From dff7a40d7bb9775d3b43faa7e0b064d3e93c4379 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Blanchon?= Date: Sat, 16 Apr 2016 16:19:15 +0200 Subject: [PATCH] Updated Bag of Tricks (markdown) --- Bag-of-Tricks.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Bag-of-Tricks.md b/Bag-of-Tricks.md index 753736e..3d18b63 100644 --- a/Bag-of-Tricks.md +++ b/Bag-of-Tricks.md @@ -83,7 +83,7 @@ Lastly, it's possible to manually encode the nested array with an undocumented f ```c++ JsonObject& root = jsonBuffer.createObject(); root["value1"] = "x"; -root["value2"] = ArduinoJson::Internals::Unparsed("[[\"Yes\",\"No\"],[\"Maybe\"]"); +root["value2"] = RawJson("[[\"Yes\",\"No\"],[\"Maybe\"]"); ``` See issue [#252](https://github.com/bblanchon/ArduinoJson/issues/252)