From 2b4d7b0e1cd264ba66214fdd5589704c10f6445f Mon Sep 17 00:00:00 2001 From: Yang Gang <70256297+YangGangUEFI@users.noreply.github.com> Date: Mon, 6 Jan 2025 02:08:16 +0800 Subject: [PATCH] fix(circle_buff): replace a none ASCII character (#7538) --- src/misc/lv_circle_buf.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/misc/lv_circle_buf.h b/src/misc/lv_circle_buf.h index 614900084..2b4f27bf8 100644 --- a/src/misc/lv_circle_buf.h +++ b/src/misc/lv_circle_buf.h @@ -170,7 +170,7 @@ lv_result_t lv_circle_buf_peek(const lv_circle_buf_t * circle_buf, void * data); /** * Peek a value at an index * @param circle_buf pointer to buffer - * @param index the index of the value to peekļ¼Œ if the index is greater than the size of the buffer, it will return looply. + * @param index the index of the value to peek, if the index is greater than the size of the buffer, it will return looply. * @param data pointer to a variable to store the peeked value * @return LV_RESULT_OK: the value is peeked; LV_RESULT_INVALID: the value is not peeked */