From b77151f476b152cbcaee6c3f19659b03955fb0f2 Mon Sep 17 00:00:00 2001 From: ProgrammingElectronicsAcademy <52792043+ProgrammingElectronicsAcademy@users.noreply.github.com> Date: Thu, 21 Jul 2022 08:51:14 -0400 Subject: [PATCH] Proposed typo correction in memory-guide.md Remove stray pipe "|" from middle of word. --- content/learn/03.programming/06.memory-guide/memory-guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/learn/03.programming/06.memory-guide/memory-guide.md b/content/learn/03.programming/06.memory-guide/memory-guide.md index 9d2d07098c..d7eddabf6e 100644 --- a/content/learn/03.programming/06.memory-guide/memory-guide.md +++ b/content/learn/03.programming/06.memory-guide/memory-guide.md @@ -170,7 +170,7 @@ The following table summarizes a specific Arduino® board's memory allocation: ## Measuring Memory Usage in Arduino® Boards -Memory usage statistics help comprehend the insight of resource management affected by the designed code structure. Memory load demand is one statistic that will give you an insight into how efficient the code is design|ed. It is a crucial development consideration element because the resources are finite inside a microcontroller-based system; **software should always perform without reaching maximum load capacity to avoid problems or issues**. Memory load could be observed either as **available RAM** at disposal for specific tasks or **flash storage remaining capacity** for required headroom. +Memory usage statistics help comprehend the insight of resource management affected by the designed code structure. Memory load demand is one statistic that will give you an insight into how efficient the code is designed. It is a crucial development consideration element because the resources are finite inside a microcontroller-based system; **software should always perform without reaching maximum load capacity to avoid problems or issues**. Memory load could be observed either as **available RAM** at disposal for specific tasks or **flash storage remaining capacity** for required headroom. ***To avoid run-time problems, microcontroller-based systems should always run without reaching their maximum memory capacity.***