forked from bblanchon/ArduinoJson
fix a spelling error of JsonParserExample.ino
This commit is contained in:
committed by
Benoît Blanchon
parent
00aa038818
commit
e842838a23
@ -19,9 +19,9 @@ void setup() {
|
|||||||
StaticJsonDocument<200> doc;
|
StaticJsonDocument<200> doc;
|
||||||
|
|
||||||
// StaticJsonDocument<N> allocates memory on the stack, it can be
|
// StaticJsonDocument<N> allocates memory on the stack, it can be
|
||||||
// replaced by DynamicJsonObject which allocates in the heap.
|
// replaced by DynamicJsonDocument which allocates in the heap.
|
||||||
//
|
//
|
||||||
// DynamicJsonObject doc(200);
|
// DynamicJsonDocument doc(200);
|
||||||
|
|
||||||
// JSON input string.
|
// JSON input string.
|
||||||
//
|
//
|
||||||
|
Reference in New Issue
Block a user