From 4f0beee01b720928d9cc8360a1e6c3a13630b6b1 Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Sun, 15 Nov 2020 23:49:31 +1100 Subject: [PATCH] docs: fix simple typo, obejct -> object (#1900) There is a small typo in src/lv_core/lv_obj.c, src/lv_core/lv_obj.h. Should read `object` rather than `obejct`. --- src/lv_core/lv_obj.c | 4 ++-- src/lv_core/lv_obj.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lv_core/lv_obj.c b/src/lv_core/lv_obj.c index 88e44b023..02edcb4b5 100644 --- a/src/lv_core/lv_obj.c +++ b/src/lv_core/lv_obj.c @@ -1900,7 +1900,7 @@ lv_res_t lv_event_send(lv_obj_t * obj, lv_event_t event, const void * data) /** * Send LV_EVENT_REFRESH event to an object - * @param obj point to an obejct. (Can NOT be NULL) + * @param obj point to an object. (Can NOT be NULL) * @return LV_RES_OK: success, LV_RES_INV: to object become invalid (e.g. deleted) due to this event. */ lv_res_t lv_event_send_refresh(lv_obj_t * obj) @@ -4629,7 +4629,7 @@ static bool style_prop_is_cacheble(lv_style_property_t prop) /** * Update the cache of style list - * @param obj pointer to an obejct + * @param obj pointer to an object * @param part the part of the object * @param prop the property which triggered the update */ diff --git a/src/lv_core/lv_obj.h b/src/lv_core/lv_obj.h index bcd923650..2aabcd7ca 100644 --- a/src/lv_core/lv_obj.h +++ b/src/lv_core/lv_obj.h @@ -850,7 +850,7 @@ lv_res_t lv_event_send(lv_obj_t * obj, lv_event_t event, const void * data); /** * Send LV_EVENT_REFRESH event to an object - * @param obj point to an obejct. (Can NOT be NULL) + * @param obj point to an object. (Can NOT be NULL) * @return LV_RES_OK: success, LV_RES_INV: to object become invalid (e.g. deleted) due to this event. */ lv_res_t lv_event_send_refresh(lv_obj_t * obj);