From 23b30f79305394af653fefeceee06e264ec2f091 Mon Sep 17 00:00:00 2001 From: YAMAMOTO Takashi Date: Wed, 12 Feb 2020 13:03:22 +0900 Subject: [PATCH] Fix typos in comments --- mm/mm_heap/mm_addfreechunk.c | 2 +- mm/umm_heap/umm_heap.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mm/mm_heap/mm_addfreechunk.c b/mm/mm_heap/mm_addfreechunk.c index e2defc0908..554851350b 100644 --- a/mm/mm_heap/mm_addfreechunk.c +++ b/mm/mm_heap/mm_addfreechunk.c @@ -63,7 +63,7 @@ void mm_addfreechunk(FAR struct mm_heap_s *heap, FAR struct mm_freenode_s *node) int ndx = mm_size2ndx(node->size); - /* Now put the new node int the next */ + /* Now put the new node into the next */ for (prev = &heap->mm_nodelist[ndx], next = heap->mm_nodelist[ndx].flink; next && next->size && next->size < node->size; diff --git a/mm/umm_heap/umm_heap.h b/mm/umm_heap/umm_heap.h index 434267e2f5..963c309b87 100644 --- a/mm/umm_heap/umm_heap.h +++ b/mm/umm_heap/umm_heap.h @@ -49,7 +49,7 @@ ****************************************************************************/ #if defined(CONFIG_ARCH_ADDRENV) && defined(CONFIG_BUILD_KERNEL) -/* In the kernel build, there a multiple user heaps; one for each task +/* In the kernel build, there are multiple user heaps; one for each task * group. In this build configuration, the user heap structure lies * in a reserved region at the beginning of the .bss/.data address * space (CONFIG_ARCH_DATA_VBASE). The size of that region is given by