From b27c58219ffc122ad0c7f240c76305940eb011d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Blanchon?= Date: Sun, 29 Jan 2017 10:44:00 +0100 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 bdd7e41..0b4d837 100644 --- a/Avoiding-pitfalls.md +++ b/Avoiding-pitfalls.md @@ -55,7 +55,7 @@ For this reason, **you should not use a global variable** for your `JsonBuffer`. The best practice is to **declare it in a local scope**, so that it's discarded as soon as possible. My advice is to declare it in a function whose unique role is to handle the JSON serialization. -See [FAQ: The first parsing succeeds, why does the next ones fail?](https://bblanchon.github.io/ArduinoJson/faq/the-first-parsing-succeeds-why-does-the-next-ones-fail) +See [FAQ: The first parsing succeeds, why does the next ones fail?](https://bblanchon.github.io/ArduinoJson/faq/the-first-parsing-succeeds-why-do-the-next-ones-fail) #### 5. Keep the JSON string in memory long enough