From 5d12bddd58d79c3b648fba30c64b0cb61c557289 Mon Sep 17 00:00:00 2001 From: Michael Miller Date: Fri, 8 Feb 2019 08:40:10 -0800 Subject: [PATCH] Updated FAQ #3 (markdown) --- FAQ-#3.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FAQ-#3.md b/FAQ-#3.md index 573313b..c597aec 100644 --- a/FAQ-#3.md +++ b/FAQ-#3.md @@ -25,7 +25,7 @@ void PixelCountChanged(uint16_t newCount) { ``` #### Dynamically create one -The key word here is dynamic. The best practice when dealing with key feature change is to dynamical create the object and recreate it when things change. It will often lead to smaller program code size even though you may have to type more. See the following snippet of code as an example of how to do this. +The key word here is dynamic. The best practice when dealing with key feature change is to dynamically create the object and recreate it when things change. It will often lead to smaller program code size even though you may have to type more. See the following snippet of code as an example of how to do this. The caveat to this solution is that if it happens often, memory will become fragmented slowing down your sketch. This is best used when it happens rarely. ``` // declare your object as dynamic, a pointer to it, the *