From 450618c39df5b64877570f0ef613b87c1e609c40 Mon Sep 17 00:00:00 2001 From: Marius Vikhammer Date: Fri, 7 Jul 2023 10:49:15 +0800 Subject: [PATCH] docs(heap): fixed typo in heap trace docs --- components/heap/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/heap/Kconfig b/components/heap/Kconfig index 57fe0d8eaa..f1a382be9e 100644 --- a/components/heap/Kconfig +++ b/components/heap/Kconfig @@ -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.