Fix typos in comments

This commit is contained in:
YAMAMOTO Takashi 2020-02-12 13:03:22 +09:00 committed by Alin Jerpelea
parent e2ce8d5169
commit 23b30f7930
2 changed files with 2 additions and 2 deletions

View file

@ -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;

View file

@ -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