From 04239f92872cfec584af548633f7092488eb8112 Mon Sep 17 00:00:00 2001 From: Gabor Kiss-Vamosi Date: Tue, 30 Oct 2018 09:18:45 +0100 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 580beb1da..ab32a2882 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 does 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 5960132db..086ba4057 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 does 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 */