From 47de6f05dc81d3b5b7353fa9a74170a08e51af70 Mon Sep 17 00:00:00 2001 From: guoweilkd Date: Mon, 8 Nov 2021 16:15:18 +0800 Subject: [PATCH] fix(draw_img): fix typos in API comments (#2773) --- src/draw/lv_draw_img.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/draw/lv_draw_img.c b/src/draw/lv_draw_img.c index e88305c94..8163c4e83 100644 --- a/src/draw/lv_draw_img.c +++ b/src/draw/lv_draw_img.c @@ -331,11 +331,11 @@ LV_ATTRIBUTE_FAST_MEM static lv_res_t lv_img_draw_core(const lv_area_t * coords, /** * Draw a color map to the display (image) - * @param cords_p coordinates the color map - * @param mask_p the map will drawn only on this area (truncated to draw_buf area) + * @param map_area coordinates the color map + * @param clip_area the map will drawn only on this area (truncated to draw_buf area) * @param map_p pointer to a lv_color_t array * @param draw_dsc pointer to an initialized `lv_draw_img_dsc_t` variable - * @param chroma_keyed true: enable transparency of LV_IMG_LV_COLOR_TRANSP color pixels + * @param chroma_key true: enable transparency of LV_IMG_LV_COLOR_TRANSP color pixels * @param alpha_byte true: extra alpha byte is inserted for every pixel */ LV_ATTRIBUTE_FAST_MEM static void lv_draw_map(const lv_area_t * map_area, const lv_area_t * clip_area,