docs(heap): fixed typo in heap trace docs

This commit is contained in:
Marius Vikhammer 2023-07-07 10:49:15 +08:00
parent 185d7a7bd4
commit 450618c39d

View File

@ -81,7 +81,7 @@ menu "Heap memory debugging"
Heap trace standalone supports storing records as a list, or a list + hash map.
Using only a list takes less memory, but calls to 'free' will get slower as the
list grows. This is particiularly affected by HEAP_TRACE_ALL mode.
list grows. This is particularly affected when using HEAP_TRACE_ALL mode.
By using a list + hash map, calls to 'free' remain fast, at the cost of
additional memory to store the hash map.