From 044831f168c22bb55cd0cf5d8e4afa7f6bc50a5a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Blanchon?= Date: Wed, 25 May 2016 22:53:04 +0200 Subject: [PATCH] Updated Avoiding pitfalls (markdown) --- Avoiding-pitfalls.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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...