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

@ -442,7 +442,7 @@ Additional notes on the above:
values as *node identifiers*. Node identifiers are covered in more detail in
:ref:`dt-from-c`.
- Array and similar type property values can be split several ``<>``
- Array and similar type property values can be split into several ``<>``
blocks, like this:
.. code-block:: none

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().

View file

@ -1,4 +1,4 @@
# Incresed stack due to settings API usage
# Increased stack due to settings API usage
CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE=2048
CONFIG_BT=y

View file

@ -439,7 +439,7 @@ static void example_initialization(void)
if ((rc != 0) && (rc != -ENOENT)) {
printk("can't delete config file%d\n", rc);
} else {
printk("FS initiqalized: OK\n");
printk("FS initialized: OK\n");
}
}
#endif