diff --git a/src/core/lv_obj_pos.h b/src/core/lv_obj_pos.h index d1078e8e4..eab91b2a2 100644 --- a/src/core/lv_obj_pos.h +++ b/src/core/lv_obj_pos.h @@ -198,7 +198,7 @@ void lv_obj_align_to(lv_obj_t * obj, const lv_obj_t * base, lv_align_t align, in void lv_obj_center(lv_obj_t * obj); /** - * Set the transfrom matrix of an object + * Set the transform matrix of an object * @param obj pointer to an object * @param matrix pointer to a matrix to set * @note `LV_DRAW_TRANSFORM_USE_MATRIX` needs to be enabled. @@ -206,7 +206,7 @@ void lv_obj_center(lv_obj_t * obj); void lv_obj_set_transform(lv_obj_t * obj, const lv_matrix_t * matrix); /** - * Reset the transfrom matrix of an object to identity matrix + * Reset the transform matrix of an object to identity matrix * @param obj pointer to an object * @note `LV_DRAW_TRANSFORM_USE_MATRIX` needs to be enabled. */ diff --git a/src/core/lv_obj_style.c b/src/core/lv_obj_style.c index d82102513..d20ac7151 100644 --- a/src/core/lv_obj_style.c +++ b/src/core/lv_obj_style.c @@ -359,7 +359,7 @@ void lv_obj_set_local_style_prop(lv_obj_t * obj, lv_style_prop_t prop, lv_style_ { LV_PROFILER_STYLE_BEGIN; - /*Stop running transitions wit this property */ + /*Stop running transitions with this property */ trans_delete(obj, lv_obj_style_get_selector_part(selector), prop, NULL); lv_style_t * style = get_local_style(obj, selector);