1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-28 07:03:00 +08:00

chore(demos): fix spelling error in demos (#7479)

Signed-off-by: bjsylvia <bjsylvia@163.com>
This commit is contained in:
bjsylvia 2024-12-20 11:05:57 +08:00 committed by GitHub
parent 83ebd439fa
commit 019bfa4415
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -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`.

View File

@ -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);