Skip to content

Commit f52cbff

Browse files
dbkindernashif
authored andcommitted
doc: fix more spelling errors throughout docs
Change-Id: Ie76b51a3d0729159fa30c1fc9160b279d9f70b6c Signed-off-by: David B. Kinder <[email protected]>
1 parent d031cd3 commit f52cbff

23 files changed

+39
-39
lines changed

doc/README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ Documentation Notes
1818

1919
Zephyr Project content is written using the reStructuredText markup language
2020
(.rst file extension) with Sphinx extensions, and processed using sphinx to
21-
create a formatted standalone website. Developers can view this content either
21+
create a formatted stand-alone website. Developers can view this content either
2222
in its raw form as .rst markup files, or you can generate the HTML content and view it
2323
with a web browser directly on your workstations drive. This same .rst
24-
content is also fed into the Zephyr Project'ns public website documentation area
24+
content is also fed into the Zephyr Project's public website documentation area
2525
(with a different theme applied).
2626

2727
You can read details about reStructuredText and about Sphinx extensions from

doc/application/application.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -398,7 +398,7 @@ entries manually, using the configuration menu is a preferred method.
398398

399399
.. note::
400400

401-
When a non-default entry is selected for options that are nonnumerical,
401+
When a non-default entry is selected for options that are non-numerical,
402402
an asterisk :kbd:`*` appears between the square brackets in the display.
403403
There is nothing added added the display when you select the option's
404404
default.

doc/crypto/tinycrypt.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ Specific Remarks
217217

218218
* TinyCrypt ECC implementation is based on nano-ecc (see
219219
https://github.com/iSECPartners/nano-ecc) which in turn is based on
220-
mciro-ecc (see https://github.com/kmackay/micro-ecc). In the original
220+
micro-ecc (see https://github.com/kmackay/micro-ecc). In the original
221221
nano and micro-ecc documentation, there is an important remark about the
222222
way integers are represented:
223223

doc/drivers/drivers.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Zephyr provides a set of device drivers for multiple boards. Each driver
4949
should support an interrupt-based implementation, rather than polling, unless
5050
the specific hardware does not provide any interrupt.
5151

52-
High-level calls accessed through devices's specific API, such as i2c.h
52+
High-level calls accessed through device-specific APIs, such as i2c.h
5353
or spi.h, are usually intended as synchronous. Thus, these calls should be
5454
blocking.
5555

@@ -147,7 +147,7 @@ the normal course of operation (such as a storage device full). Bad
147147
parameters, programming errors, consistency checks, pathological/unrecoverable
148148
failures, etc., should be handled by assertions.
149149

150-
When it is appropriate to return error condtitions for the caller to check, 0
150+
When it is appropriate to return error conditions for the caller to check, 0
151151
should be returned on success and a POSIX errno.h code returned on failure.
152152
See https://wiki.zephyrproject.org/view/Coding_conventions#Return_Codes for
153153
details about this.
@@ -280,7 +280,7 @@ executed. Any driver will specify one of five initialization levels:
280280
`PRE_KERNEL_2`
281281
Used for devices that rely on the initialization of devices initialized
282282
as part of the PRIMARY level. These devices cannot use any kernel
283-
services during configuration, since the kerne services are not yet
283+
services during configuration, since the kernel services are not yet
284284
available. Init functions at this level run on the interrupt stack.
285285

286286
`POST_KERNEL`

doc/getting_started/getting_started.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ To build an example application follow these steps:
7878
7979
$ cd zephyr-project
8080
81-
#. Source the project environment file to set the project environtment
81+
#. Source the project environment file to set the project environment
8282
variables:
8383

8484
.. code-block:: console

doc/getting_started/installation_mac.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ Setting Up the Toolchain
9494
Creating a Case-sensitive File System
9595
=====================================
9696

97-
Building the compiler requires a case-senstive file system. Therefore, use
97+
Building the compiler requires a case-sensitive file system. Therefore, use
9898
:program:`diskutil` to create an 8 GB blank sparse image making sure you select
9999
case-sensitive file system (OS X Extended (Case-sensitive, Journaled) and
100100
mount it.

doc/getting_started/installation_win.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ for native Windows applications. The Zephyr build system will execute on top of
3636
this tool set.
3737

3838
To install :program:`MinGW`, visit the site `MinGW Home`_ and install the
39-
following packages with their installler `mingw-get-setup.exe`:
39+
following packages with their installer `mingw-get-setup.exe`:
4040

4141
* mingw-developer-toolkit
4242
* mingw32-base

doc/glossary.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,4 +66,4 @@ Glossary of Terms
6666
XIP
6767
(eXecute In Place) a method of executing programs directly from long
6868
term storage rather than copying it into RAM, saving writable memory for
69-
dynamic data and not the staic program code.
69+
dynamic data and not the static program code.

doc/porting/application.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Legacy Applications Porting Guide
88

99
This document is still work in progress.
1010

11-
This guide will help you move your applications from the nanokerne/microkernel
11+
This guide will help you move your applications from the nanokernel/microkernel
1212
model to the unified kernel. The unified kernel was introduced with
1313
:ref:`zephyr_1.6` which was released late 2016.
1414

doc/porting/arch.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ When a device wants to signal the processor that there is some work to be done
8383
on its behalf, it raises an interrupt. When a thread does an operation that is
8484
not handled by the serial flow of the software itself, it raises an exception.
8585
Both, interrupts and exceptions, pass control to a handler. The handler is
86-
knowns as an :abbr:`ISR (Interrupt Service Routine)` in the case of
86+
known as an :abbr:`ISR (Interrupt Service Routine)` in the case of
8787
interrupts. The handler perform the work required the exception or the
8888
interrupt. For interrupts, that work is device-specific. For exceptions, it
8989
depends on the exception, but most often the core kernel itself is responsible

0 commit comments

Comments
 (0)