From e3e130c54ca29f6298adc1eec25d5365fa8d6821 Mon Sep 17 00:00:00 2001 From: Abdullah Alsigar Date: Sat, 28 Mar 2020 18:10:21 +0300 Subject: [PATCH] Fix comment typo (#1423) --- src/lv_objx/lv_label.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lv_objx/lv_label.c b/src/lv_objx/lv_label.c index 5c870d05f..b413d1cbe 100644 --- a/src/lv_objx/lv_label.c +++ b/src/lv_objx/lv_label.c @@ -68,7 +68,7 @@ static lv_signal_cb_t ancestor_signal; /** * Create a label objects * @param par pointer to an object, it will be the parent of the new label - * @param copy pointer to a button object, if not NULL then the new object will be copied from it + * @param copy pointer to a label object, if not NULL then the new object will be copied from it * @return pointer to the created button */ lv_obj_t * lv_label_create(lv_obj_t * par, const lv_obj_t * copy)