From 269dd90211225fca8e56311d3120acf1ba51f0b3 Mon Sep 17 00:00:00 2001 From: lhdjply Date: Fri, 14 Jun 2024 11:06:50 +0800 Subject: [PATCH] chore(widgets): fix typo (#6369) Signed-off-by: lhdjply --- src/widgets/keyboard/lv_keyboard.h | 2 +- src/widgets/roller/lv_roller.h | 2 +- src/widgets/tabview/lv_tabview.h | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/widgets/keyboard/lv_keyboard.h b/src/widgets/keyboard/lv_keyboard.h index c2c84ba82..3b916c7e1 100644 --- a/src/widgets/keyboard/lv_keyboard.h +++ b/src/widgets/keyboard/lv_keyboard.h @@ -23,7 +23,7 @@ extern "C" { #endif #if LV_USE_TEXTAREA == 0 -#error "lv_textare is required. Enable it in lv_conf.h (LV_USE_TEXTAREA 1) " +#error "lv_textarea is required. Enable it in lv_conf.h (LV_USE_TEXTAREA 1) " #endif /********************* diff --git a/src/widgets/roller/lv_roller.h b/src/widgets/roller/lv_roller.h index 960994886..ff75f246f 100644 --- a/src/widgets/roller/lv_roller.h +++ b/src/widgets/roller/lv_roller.h @@ -107,7 +107,7 @@ uint32_t lv_roller_get_selected(const lv_obj_t * obj); /** * Get the current selected option as a string. - * @param obj pointer to ddlist object + * @param obj pointer to roller object * @param buf pointer to an array to store the string * @param buf_size size of `buf` in bytes. 0: to ignore it. */ diff --git a/src/widgets/tabview/lv_tabview.h b/src/widgets/tabview/lv_tabview.h index a4e0c7640..edb464d8d 100644 --- a/src/widgets/tabview/lv_tabview.h +++ b/src/widgets/tabview/lv_tabview.h @@ -93,7 +93,7 @@ uint32_t lv_tabview_get_tab_count(lv_obj_t * obj); /** * Get the current tab's index * @param obj pointer to a tabview widget - * @return the zero based indoex of the current tab + * @return the zero based index of the current tab */ uint32_t lv_tabview_get_tab_active(lv_obj_t * obj); @@ -107,7 +107,7 @@ lv_obj_t * lv_tabview_get_content(lv_obj_t * obj); /** * Get the tab bar where the buttons are created * @param obj pointer to a tabview widget - * @return the tabbar + * @return the tab bar */ lv_obj_t * lv_tabview_get_tab_bar(lv_obj_t * obj);