From 066c7a1864723c98eb6733c7d50b0b737abe92ae Mon Sep 17 00:00:00 2001 From: bjsylvia Date: Thu, 5 Oct 2023 15:22:20 +0800 Subject: [PATCH] fix(benchmark): fix typos (#4627) Signed-off-by: XiaoweiYan Co-authored-by: XiaoweiYan --- demos/benchmark/lv_demo_benchmark.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/demos/benchmark/lv_demo_benchmark.c b/demos/benchmark/lv_demo_benchmark.c index 02ce78f1f..c440ec9a4 100644 --- a/demos/benchmark/lv_demo_benchmark.c +++ b/demos/benchmark/lv_demo_benchmark.c @@ -467,7 +467,7 @@ static void line_cb(void) line_create(&style_common); } -static void arc_think_cb(void) +static void arc_thin_cb(void) { lv_style_reset(&style_common); @@ -612,7 +612,7 @@ static scene_dsc_t scenes[] = { {.name = "Line", .weight = 10, .create_cb = line_cb}, - {.name = "Arc think", .weight = 10, .create_cb = arc_think_cb}, + {.name = "Arc thin", .weight = 10, .create_cb = arc_thin_cb}, {.name = "Arc thick", .weight = 10, .create_cb = arc_thick_cb}, {.name = "Substr. rectangle", .weight = 10, .create_cb = sub_rectangle_cb},