diff --git a/Avoiding-pitfalls.md b/Avoiding-pitfalls.md index 56b300c..916cf15 100644 --- a/Avoiding-pitfalls.md +++ b/Avoiding-pitfalls.md @@ -74,7 +74,7 @@ So this will only work if `json` is still in memory. #### 6. Do not assume that strings are copied -By design ArduinoJson **never makes copies** of strings. +By default, ArduinoJson doesn't make copies of strings. This allows it to work with full static memory allocation and ensure an efficient use of CPU cycles. But this can have subtle consequences...