Skip to content

Commit

Permalink
doc: fix typo in multiple directories before v4.0.0 release
Browse files Browse the repository at this point in the history
Utilize a code spell-checking tool to scan for and correct spelling errors
in various files within the `doc` directory.

Signed-off-by: Pisit Sawangvonganan <pisit@ndrsolution.com>
  • Loading branch information
ndrs-pst authored and mmahadevan108 committed Nov 13, 2024
1 parent 1a5ae37 commit 1175f57
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion doc/connectivity/networking/network_tracing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Network Tracing

User can enable network core stack and socket API calls tracing.

The :kconfig:option:`CONFIG_TRACING_NET_CORE` option contols the core network
The :kconfig:option:`CONFIG_TRACING_NET_CORE` option controls the core network
stack tracing. This option is enabled by default if tracing and networking
are enabled. The system will start to collect the receiving and sending call
verdicts i.e., whether the network packet was successfully sent or received.
Expand Down
2 changes: 1 addition & 1 deletion doc/contribute/documentation/guidelines.rst
Original file line number Diff line number Diff line change
Expand Up @@ -796,7 +796,7 @@ Application build commands
:board: qemu_x86
:goals: build

This wil render as:
This will render as:

.. zephyr-app-commands::
:zephyr-app: samples/hello_world
Expand Down
2 changes: 1 addition & 1 deletion doc/develop/toolchains/cadence_xcc.rst
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ Cadence Tensilica Xtensa C/C++ Compiler (XCC)
export XTENSA_CORE=ace10_LX7HiFi4_2022_10
export TOOLCHAIN_VER=RI-2022.10-linux
#. Muiltiple SoCs:
#. Multiple SoCs:

.. code-block:: console
Expand Down
4 changes: 2 additions & 2 deletions doc/hardware/arch/arm-scmi.rst
Original file line number Diff line number Diff line change
Expand Up @@ -142,9 +142,9 @@ Currently, Zephyr has support for the following standard protocols:
Clock management protocol
*************************

This protocol is used to perfrom clock management operations. This is done
This protocol is used to perform clock management operations. This is done
via a driver (:file:`drivers/clock_control/clock_control_arm_scmi.c`), which
implements the Zephyr clock control subsytem API. As such, from the user's
implements the Zephyr clock control subsystem API. As such, from the user's
perspective, using this driver is no different than using any other clock
management driver.

Expand Down
2 changes: 1 addition & 1 deletion doc/releases/migration-guide-4.0.rst
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ Bluetooth Audio
:kconfig:option:`CONFIG_BT_ASCS_MAX_ASE_SNK_COUNT` to reflect that they now serve as a
compile-time maximum configuration of ASEs to be used.
:c:func:`bt_bap_unicast_server_register` needs to be called once before using the Unicast Server,
and more specfically prior to calling :c:func:`bt_bap_unicast_server_register_cb` for the first
and more specifically prior to calling :c:func:`bt_bap_unicast_server_register_cb` for the first
time. It does not need to be called again until the new function
:c:func:`bt_bap_unicast_server_unregister` has been called.
(:github:`76632`)
Expand Down
6 changes: 3 additions & 3 deletions doc/releases/release-notes-4.0.rst
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,7 @@ Drivers and Sensors

* I3C

* Added support for SETAASA optmization during initialization. Added a
* Added support for SETAASA optimization during initialization. Added a
``supports-setaasa`` property to ``i3c-devices.yaml``.
* Added sending DEFTGTS if any devices that support functioning as a secondary
controller on the bus.
Expand Down Expand Up @@ -1070,7 +1070,7 @@ Libraries / Subsystems

* :c:func:`hawkbit_autohandler` now takes one argument. If the argument is set to true, the
autohandler will reshedule itself after running. If the argument is set to false, the
autohandler will not reshedule itself. Both variants are sheduled independent of each other.
autohandler will not reshedule itself. Both variants are scheduled independent of each other.
The autohandler always runs in the system workqueue.

* Use the :c:func:`hawkbit_autohandler_wait` function to wait for the autohandler to finish.
Expand Down Expand Up @@ -1271,7 +1271,7 @@ MCUboot
* Added zephyr prefix to generated header path.
* Added optional img mgmt slot info feature.
* Added bootutil support for maximum image size details for additional images.
* Added support for automatically calculcating max sectors.
* Added support for automatically calculating max sectors.
* Added missing ``boot_enc_init()`` function.
* Added support for keeping image encrypted in scratch area in bootutil.
* Fixed serial recovery for NXP IMX.RT, LPC55x and MCXNx platforms
Expand Down
2 changes: 1 addition & 1 deletion doc/services/smf/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ Code::
/* Child states do not have entry or exit actions */
[S0] = SMF_CREATE_STATE(NULL, s0_run, NULL, &demo_states[PARENT], NULL),
[S1] = SMF_CREATE_STATE(NULL, s1_run, NULL, &demo_states[PARENT], NULL),
/* State S2 do ot have entry or exit actions and no parent */
/* State S2 do not have entry or exit actions and no parent */
[S2] = SMF_CREATE_STATE(NULL, s2_run, NULL, NULL, NULL),
};

Expand Down
2 changes: 1 addition & 1 deletion doc/services/storage/zms/zms.rst
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ Version1
- Supports 32-bit IDs to store ID/Value pairs
- Small sized data ( <= 8 bytes) are stored in the ATE itself
- Built-in Data CRC32 (included in the ATE)
- Versionning of ZMS (to handle future evolution)
- Versioning of ZMS (to handle future evolution)
- Supports large write-block-size (Only for platforms that need this)

Future features
Expand Down

0 comments on commit 1175f57

Please sign in to comment.