chore: fix spelling (#6401)

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Co-authored-by: Gabor Kiss-Vamosi <kisvegabor@gmail.com>
This commit is contained in:
Josh Soref
2024-06-28 03:09:23 -04:00
committed by GitHub
parent 94d48feb22
commit df0d36f02a
164 changed files with 414 additions and 411 deletions

View File

@@ -46,7 +46,7 @@ void lv_example_gridnav_3(void)
label = lv_label_create(btn);
lv_label_set_text(label, "Button 2");
/*Create an other container with long text to show how LV_GRIDNAV_CTRL_SCROLL_FIRST works*/
/*Create another container with long text to show how LV_GRIDNAV_CTRL_SCROLL_FIRST works*/
lv_obj_t * cont_sub1 = lv_obj_create(cont_main);
lv_obj_set_size(cont_sub1, lv_pct(100), 100);
@@ -65,7 +65,7 @@ void lv_example_gridnav_3(void)
"Hello world!\n"
"Hello world!");
/*Create a third container that can be focused with ENTER and contains an other grid nav*/
/*Create a third container that can be focused with ENTER and contains another grid nav*/
lv_obj_t * cont_sub2 = lv_obj_create(cont_main);
lv_gridnav_add(cont_sub2, LV_GRIDNAV_CTRL_ROLLOVER);
/*Only the container needs to be in a group*/

View File

@@ -146,7 +146,7 @@ static void download_timer_cb(lv_timer_t * t)
}
/**
* Emulate connection and FW dowlading by timers
* Emulate connection and FW downloading by timers
*/
static void fw_upload_manager_observer_cb(lv_observer_t * observer, lv_subject_t * subject)
{

View File

@@ -19,7 +19,7 @@ void lv_example_lottie_1(void)
static uint8_t buf[64 * 64 * 4];
lv_lottie_set_buffer(lottie, 64, 64, buf);
#else
/*For GPUs and special alignemnt/strid setting use a draw_buf instead*/
/*For GPUs and special alignment/strid setting use a draw_buf instead*/
LV_DRAW_BUF_DEFINE(draw_buf, 64, 64, LV_COLOR_FORMAT_ARGB8888);
lv_lottie_set_draw_buf(lottie, &draw_buf);
#endif

View File

@@ -17,7 +17,7 @@ void lv_example_lottie_2(void)
static uint8_t buf[64 * 64 * 4];
lv_lottie_set_buffer(lottie, 64, 64, buf);
#else
/*For GPUs and special alignemnt/strid setting use a draw_buf instead*/
/*For GPUs and special alignment/strid setting use a draw_buf instead*/
LV_DRAW_BUF_DEFINE(draw_buf, 64, 64, LV_COLOR_FORMAT_ARGB8888);
lv_lottie_set_draw_buf(lottie, &draw_buf);
#endif

View File

@@ -49,7 +49,7 @@ static void timer_cb(lv_timer_t * timer)
}
/**
* A round scale with multiple needles, resembing a clock
* A round scale with multiple needles, resembling a clock
*/
void lv_example_scale_6(void)
{