From 019bfa44158317fac4fe210045209de253e93218 Mon Sep 17 00:00:00 2001 From: bjsylvia Date: Fri, 20 Dec 2024 11:05:57 +0800 Subject: [PATCH] chore(demos): fix spelling error in demos (#7479) Signed-off-by: bjsylvia --- demos/benchmark/lv_demo_benchmark.h | 2 +- demos/flex_layout/lv_demo_flex_layout_view.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/demos/benchmark/lv_demo_benchmark.h b/demos/benchmark/lv_demo_benchmark.h index d1c6e7c613..3742ba06b2 100644 --- a/demos/benchmark/lv_demo_benchmark.h +++ b/demos/benchmark/lv_demo_benchmark.h @@ -32,7 +32,7 @@ extern "C" { /** * Run all benchmark scenes. * - * On the summary end screen the values shall be interpreted according to the followings: + * On the summary end screen the values shall be interpreted according to the following: * - CPU usage: * - If `LV_SYSMON_GET_IDLE` is not modified it's measured based on the time spent in * `lv_timer_handler`. diff --git a/demos/flex_layout/lv_demo_flex_layout_view.c b/demos/flex_layout/lv_demo_flex_layout_view.c index 944e6643c0..a2ce4813b9 100644 --- a/demos/flex_layout/lv_demo_flex_layout_view.c +++ b/demos/flex_layout/lv_demo_flex_layout_view.c @@ -58,7 +58,7 @@ void view_create(lv_obj_t * par, view_t * ui) ui->root = obj_child_node_create(par, ui); lv_obj_set_size(ui->root, lv_pct(50), lv_pct(80)); - /* mian ctrl_pad */ + /* main ctrl_pad */ lv_obj_t * obj = lv_obj_create(par); lv_obj_set_size(obj, lv_pct(40), lv_pct(80)); lv_obj_set_style_pad_all(obj, 0, 0);