1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-14 06:42:58 +08:00

chore: fix typos in others (#7514)

Signed-off-by: bjsylvia <bjsylvia@163.com>
This commit is contained in:
bjsylvia 2024-12-27 12:06:05 +08:00 committed by GitHub
parent 664d41748d
commit 4c5fbefeb7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 4 additions and 4 deletions

View File

@ -545,7 +545,7 @@ static const lv_font_refer_node_t * lv_font_manager_get_freetype_font(lv_font_ma
return refer_node;
}
/* not fount refer_node, start to create font */
/* not found refer_node, start to create font */
lv_font_t * font = lv_font_manager_create_font_warpper(manager, ft_info);

View File

@ -118,7 +118,7 @@ void lv_subject_init_string(lv_subject_t * subject, char * buf, char * prev_buf,
void lv_subject_copy_string(lv_subject_t * subject, const char * buf);
/**
* Print a formated string to a subject. It will notify all the observers as well.
* Print a formatted string to a subject. It will notify all the observers as well.
* @param subject pointer to the subject
* @param format the format string
*/

View File

@ -168,7 +168,7 @@ typedef unsigned int vg_lite_color_t;
VG_LITE_SUCCESS = 0, /*! Success. */
VG_LITE_INVALID_ARGUMENT, /*! An invalid argument was specified. */
VG_LITE_OUT_OF_MEMORY, /*! Out of memory. */
VG_LITE_NO_CONTEXT, /*! No context or an unintialized context specified. */
VG_LITE_NO_CONTEXT, /*! No context or an uninitialized context specified. */
VG_LITE_TIMEOUT, /*! A timeout has occurred during a wait. */
VG_LITE_OUT_OF_RESOURCES, /*! Out of system resources. */
VG_LITE_GENERIC_IO, /*! Cannot communicate with the kernel driver. */
@ -996,7 +996,7 @@ typedef unsigned int vg_lite_color_t;
/* Get the value of register from register's address. */
vg_lite_error_t vg_lite_get_register(vg_lite_uint32_t address, vg_lite_uint32_t* result);
/* Generate a 3x3 homogenous matrix to transform 4 source coordinates to 4 target coordinates. */
/* Generate a 3x3 homogeneous matrix to transform 4 source coordinates to 4 target coordinates. */
vg_lite_error_t vg_lite_get_transform_matrix(vg_lite_point4_t src, vg_lite_point4_t dst, vg_lite_matrix_t *mat);
/* Allocate a buffer from GPU hardware accessible memory. */