summaryrefslogtreecommitdiff
path: root/doc/MemoryAnalysis.md
diff options
context:
space:
mode:
Diffstat (limited to 'doc/MemoryAnalysis.md')
-rw-r--r--doc/MemoryAnalysis.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/MemoryAnalysis.md b/doc/MemoryAnalysis.md
index 0feb0f9e..fe493ba0 100644
--- a/doc/MemoryAnalysis.md
+++ b/doc/MemoryAnalysis.md
@@ -245,7 +245,7 @@ void* __wrap_malloc(size_t size) {
Now, your function `__wrap_malloc()` will be called instead of `malloc()`. You can call the actual malloc from the stdlib by calling `__real_malloc()`.
-Using this technique, I was able to trace all malloc calls at boot (boot -> digital watchface):
+Using this technique, I was able to trace all malloc calls at boot (boot -> digital watch face):
- system task = 3464 bytes (SystemTask could potentially be declared as a global variable to avoid heap allocation here)
- string music = 31 (maybe we should not use std::string when not needed, as it does heap allocation)