From a2ce331ef951c2cba2e5c429ac949fa41f875a6b Mon Sep 17 00:00:00 2001 From: WangLei1993 Date: Sun, 20 Apr 2025 13:12:20 +0800 Subject: [PATCH] fix(esp_http_server): Fix incorrect spelling in the comments --- components/esp_http_server/include/esp_http_server.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/esp_http_server/include/esp_http_server.h b/components/esp_http_server/include/esp_http_server.h index 8a2340f558..d834982f0a 100644 --- a/components/esp_http_server/include/esp_http_server.h +++ b/components/esp_http_server/include/esp_http_server.h @@ -1151,7 +1151,7 @@ esp_err_t httpd_resp_send_chunk(httpd_req_t *r, const char *buf, ssize_t buf_len /** * @brief API to send a complete string as HTTP response. * - * This API simply calls http_resp_send with buffer length + * This API simply calls httpd_resp_send with buffer length * set to string length assuming the buffer contains a null * terminated string * @@ -1172,7 +1172,7 @@ static inline esp_err_t httpd_resp_sendstr(httpd_req_t *r, const char *str) { /** * @brief API to send a string as an HTTP response chunk. * - * This API simply calls http_resp_send_chunk with buffer length + * This API simply calls httpd_resp_send_chunk with buffer length * set to string length assuming the buffer contains a null * terminated string *