doc: Fix a few typos in docs/comments/messages

Fix two typos in documentation, one in a sample's comment, and one in a
sample's console message. Found while learning Zephyr and exploring the
sources.

Signed-off-by: Nikolai Kondrashov <spbnick@gmail.com>
This commit is contained in:
Nikolai Kondrashov 2021-08-28 20:44:21 +03:00 committed by Anas Nashif
commit 77ee1f02aa
4 changed files with 4 additions and 4 deletions

View file

@ -57,7 +57,7 @@ ssize_t console_write(void *dummy, const void *buf, size_t size);
* Return next input character from console. If no characters available,
* this function will block. This function is similar to ANSI C
* getchar() function and is intended to ease porting of existing
* software. Before this function can be used, console_getchar_init()
* software. Before this function can be used, console_init()
* should be called once. This function is incompatible with native
* Zephyr callback-based console input processing, shell subsystem,
* or console_getline().