mirror of
https://github.com/apache/nuttx.git
synced 2025-01-13 10:58:49 +08:00
Fix typos in comments
This commit is contained in:
parent
e2ce8d5169
commit
23b30f7930
2 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue