From 6a65719f29ce3725cfd4cdc4cbc83c283f1665f3 Mon Sep 17 00:00:00 2001 From: Shen Mengjing Date: Fri, 19 Sep 2025 18:44:39 +0800 Subject: [PATCH] docs: Fix some typos in docs/en and zh_CN directories --- .codespellrc | 2 +- docs/en/api-reference/peripherals/ecdsa.rst | 2 +- docs/en/libraries-and-frameworks/libs-frameworks.rst | 4 ++-- docs/zh_CN/api-guides/jtag-debugging/debugging-examples.rst | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.codespellrc b/.codespellrc index 21d23be365c..985b559e40c 100644 --- a/.codespellrc +++ b/.codespellrc @@ -1,4 +1,4 @@ [codespell] skip = build,*.yuv,components/fatfs/src/*,alice.txt,*.rgb,components/wpa_supplicant/*,components/esp_wifi/* -ignore-words-list = ser,dout,rsource,fram,inout,shs,ans,aci,unstall,unstalling,hart,wheight,ot,wel,parms,ehen +ignore-words-list = ser,dout,rsource,fram,inout,shs,ans,aci,unstall,unstalling,hart,wheight,ot,wel,parms,ehen,pre-empt,EMAC write-changes = true diff --git a/docs/en/api-reference/peripherals/ecdsa.rst b/docs/en/api-reference/peripherals/ecdsa.rst index a70bbe21fab..8c85703f238 100644 --- a/docs/en/api-reference/peripherals/ecdsa.rst +++ b/docs/en/api-reference/peripherals/ecdsa.rst @@ -77,7 +77,7 @@ Following code snippet uses :cpp:func:`esp_efuse_write_key` to set physical key .. only:: SOC_ECDSA_SUPPORT_DETERMINISTIC_MODE - Determinisitic Signature Generation + Deterministic Signature Generation ----------------------------------- The ECDSA peripheral of {IDF_TARGET_NAME} also supports generation of deterministic signatures using deterministic derivation of the parameter K as specified in the `RFC 6979 `_ section 3.2. diff --git a/docs/en/libraries-and-frameworks/libs-frameworks.rst b/docs/en/libraries-and-frameworks/libs-frameworks.rst index b9854a92260..2a2973c5169 100644 --- a/docs/en/libraries-and-frameworks/libs-frameworks.rst +++ b/docs/en/libraries-and-frameworks/libs-frameworks.rst @@ -15,7 +15,7 @@ The ESP-ADF is a comprehensive framework for audio applications including: * Bluetooth speakers * Internet radios * Hands-free devices -* Speech decognition +* Speech recognition This framework is available on GitHub: `ESP-ADF `_. @@ -92,7 +92,7 @@ ESP-Protocols components: * `mdns `_ (mDNS) is a multicast UDP service that is used to provide local network service and host discovery. See the `mdns documentation `_. -* `esp_websocket_client `_ is a managed component for ESP-IDF that contains implementation of WebSocket protocol client for ESP32. See the `esp_websocket_client documentation `_. For detailes of WebSocket protocol client, see `WebSocket_protocol_client `_. +* `esp_websocket_client `_ is a managed component for ESP-IDF that contains implementation of WebSocket protocol client for ESP32. See the `esp_websocket_client documentation `_. For details of WebSocket protocol client, see `WebSocket_protocol_client `_. * `asio `_ is a cross-platform C++ library, see https://think-async.com/Asio/. It provides a consistent asynchronous model using a modern C++ approach. See the `asio documentation `_. diff --git a/docs/zh_CN/api-guides/jtag-debugging/debugging-examples.rst b/docs/zh_CN/api-guides/jtag-debugging/debugging-examples.rst index e372bd0e2ff..5ccf7df214e 100644 --- a/docs/zh_CN/api-guides/jtag-debugging/debugging-examples.rst +++ b/docs/zh_CN/api-guides/jtag-debugging/debugging-examples.rst @@ -648,7 +648,7 @@ .. note:: - ESP-IDF 在安装 Pyhton 包时会自动安装 freertos-gdb Python 模块,详情请参考 :ref:`get-started-set-up-tools`。 + ESP-IDF 在安装 Python 包时会自动安装 freertos-gdb Python 模块,详情请参考 :ref:`get-started-set-up-tools`。 如果使用 ``idf.py gdb`` 命令运行 GDB,FreeRTOS 扩展会自动加载。也可以使用 GDB 内部命令 ``python import freertos_gdb`` 使能该模块。