From 436c09aa51c736c3a86d2c10b1258715ed86ed2c Mon Sep 17 00:00:00 2001 From: Gabor Kiss-Vamosi Date: Sat, 27 Oct 2018 11:11:08 +0200 Subject: [PATCH] lv_ll: fix comment typo --- lv_misc/lv_ll.c | 2 +- lv_misc/lv_ll.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lv_misc/lv_ll.c b/lv_misc/lv_ll.c index fd5561fb3..580beb1da 100644 --- a/lv_misc/lv_ll.c +++ b/lv_misc/lv_ll.c @@ -157,7 +157,7 @@ void * lv_ll_ins_tail(lv_ll_t * ll_p) /** * Remove the node 'node_p' from 'll_p' linked list. - * It Dose not free the the memory of node. + * It dose not free the the memory of node. * @param ll_p pointer to the linked list of 'node_p' * @param node_p pointer to node in 'll_p' linked list */ diff --git a/lv_misc/lv_ll.h b/lv_misc/lv_ll.h index 43f865182..5960132db 100644 --- a/lv_misc/lv_ll.h +++ b/lv_misc/lv_ll.h @@ -72,7 +72,7 @@ void * lv_ll_ins_tail(lv_ll_t * ll_p); /** * Remove the node 'node_p' from 'll_p' linked list. - * It Dose not free the the memory of node. + * It dose not free the the memory of node. * @param ll_p pointer to the linked list of 'node_p' * @param node_p pointer to node in 'll_p' linked list */