Skip to content

Commit b46b41d

Browse files
kartbendanieldegrasse
authored andcommitted
doc: releases: 4.2: Misc. typo and spelling fixes
General clean up of small typos and other trivial fixes. Signed-off-by: Benjamin Cabé <benjamin@zephyrproject.org>
1 parent 8fa5154 commit b46b41d

File tree

1 file changed

+14
-12
lines changed

1 file changed

+14
-12
lines changed

doc/releases/release-notes-4.2.rst

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ API Changes
8888
Removed APIs and options
8989
========================
9090

91-
* Removed the deprecated the ``net_buf_put()`` and ``net_buf_get()`` API functions.
91+
* Removed the deprecated ``net_buf_put()`` and ``net_buf_get()`` API functions.
9292

9393
* Removed the deprecated ``include/zephyr/net/buf.h`` header file.
9494

@@ -114,8 +114,8 @@ Deprecated APIs and options
114114
* The :kconfig:option:`CONFIG_LWM2M_ENGINE_MESSAGE_HEADER_SIZE` Kconfig option has been removed.
115115
The required header size should be included in the message size, configured using
116116
:kconfig:option:`CONFIG_LWM2M_COAP_MAX_MSG_SIZE`. Special care should be taken to ensure that
117-
used CoAP block size :kconfig:option:`CONFIG_LWM2M_COAP_BLOCK_SIZE` can fit given message size
118-
with headers. Previous headroom was 48 bytes.
117+
the CoAP block size used (:kconfig:option:`CONFIG_LWM2M_COAP_BLOCK_SIZE`) can fit the given
118+
message size with headers. Previous headroom was 48 bytes.
119119

120120
* TLS credential type ``TLS_CREDENTIAL_SERVER_CERTIFICATE`` was renamed and
121121
deprecated, use :c:enumerator:`TLS_CREDENTIAL_PUBLIC_CERTIFICATE` instead.
@@ -242,7 +242,7 @@ New APIs and options
242242
:kconfig:option:`CONFIG_BT_L2CAP_RET`, :kconfig:option:`CONFIG_BT_L2CAP_FC`,
243243
:kconfig:option:`CONFIG_BT_L2CAP_ENH_RET`, and :kconfig:option:`CONFIG_BT_L2CAP_STREAM`.
244244
* :c:func:`bt_avrcp_get_cap`
245-
* Improve the classic hands-free uint, including
245+
* Improve the classic hands-free unit, including
246246
:kconfig:option:`CONFIG_BT_HFP_HF_CODEC_NEG`, :kconfig:option:`CONFIG_BT_HFP_HF_ECNR`,
247247
:kconfig:option:`CONFIG_BT_HFP_HF_3WAY_CALL`, :kconfig:option:`CONFIG_BT_HFP_HF_ECS`,
248248
:kconfig:option:`CONFIG_BT_HFP_HF_ECC`, :kconfig:option:`CONFIG_BT_HFP_HF_VOICE_RECG_TEXT`,
@@ -358,12 +358,14 @@ New APIs and options
358358
* :c:macro:`IP_MULTICAST_LOOP`
359359
* :c:macro:`IPV6_MULTICAST_LOOP`
360360
* :c:macro:`TLS_CERT_VERIFY_RESULT`
361-
* :c:macro:`TLS_CERT_VERIFY_RESULT`
362361

363362
* Wi-Fi
364363

365364
* :kconfig:option:`CONFIG_WIFI_USAGE_MODE`
366-
* Added a new section to the Wi-Fi Management documentation (``doc/connectivity/networking/api/wifi.rst``) with step-by-step instructions for generating test certificates for Wi-Fi using FreeRADIUS scripts. This helps users reproduce the process for their own test environments.
365+
* Added a new section to the Wi-Fi Management documentation
366+
(``doc/connectivity/networking/api/wifi.rst``) with step-by-step instructions for generating
367+
test certificates for Wi-Fi using FreeRADIUS scripts. This helps users reproduce the process
368+
for their own test environments.
367369
* Changed the hostap IPC mechanism from socketpair to k_fifo. Depending on the enabled Wi-Fi configuration options, this can save up to 6-8 kB memory when using native Wi-Fi stack.
368370

369371
* zperf
@@ -425,8 +427,8 @@ New APIs and options
425427
* :c:macro:`VIDEO_CID_EXPOSURE_ABSOLUTE` and other controls from the CAMERA control class.
426428
* :c:macro:`VIDEO_PIX_FMT_Y10` and ``Y12``, ``Y14``, ``Y16`` variants
427429
* :c:macro:`VIDEO_PIX_FMT_SRGGB10P` and ``12P``, ``14P`` variants, for all 4 bayer variants.
428-
* ``video_buffer.index`` field
429-
* ``video_ctrl_query.int_menu`` field
430+
* :c:member:`video_buffer.index` field
431+
* :c:member:`video_ctrl_query.int_menu` field
430432
* :c:macro:`VIDEO_MIPI_CSI2_DT_NULL` and other MIPI standard values
431433

432434
* PCIe
@@ -725,7 +727,7 @@ New Boards
725727
.. _shields_added_in_zephyr_4_2:
726728

727729
New shields
728-
============
730+
===========
729731

730732
* :ref:`Arduino Giga Display Shield <arduino_giga_display_shield>`
731733
* :ref:`Arduino Modulino Buttons <arduino_modulino_buttons>`
@@ -1014,7 +1016,7 @@ New Drivers
10141016
* :dtcompatible:`x-powers,axp192-led`
10151017
* :dtcompatible:`x-powers,axp2101-led`
10161018

1017-
* :abbr:`LED (Light Emitting Diode)`
1019+
* :abbr:`LED (Light Emitting Diode)` strip
10181020

10191021
* :dtcompatible:`arduino,modulino-smartleds`
10201022

@@ -1355,11 +1357,11 @@ Other notable changes
13551357
* Added support for Armv8.1-M MPU's PXN (Privileged Execute Never) attribute.
13561358
With this, the MPU attributes for ``__ramfunc`` and ``__ram_text_reloc`` were modified such that,
13571359
PXN attribute is set for these regions if compiled with ``CONFIG_ARM_MPU_PXN`` and ``CONFIG_USERSPACE``.
1358-
This results in a change in behaviour for code being executed from these regions because,
1360+
This results in a change in behavior for code being executed from these regions because,
13591361
if these regions have pxn attribute set in them, they cannot be executed in privileged mode.
13601362

13611363
* Removed support for Nucleo WBA52CG board (``nucleo_wba52cg``) since it is NRND (Not Recommended
1362-
for New Design) and it is not supported anymore in the STM32CubeWBA from version 1.1.0 (July 2023).
1364+
for New Design) and is no longer supported in the STM32CubeWBA from version 1.1.0 (July 2023).
13631365
The migration to :zephyr:board:`nucleo_wba55cg` (``nucleo_wba55cg``) is recommended instead.
13641366

13651367
* Updated Mbed TLS to version 3.6.4 (from 3.6.2). Release notes for 3.6.3 and

0 commit comments

Comments
 (0)