fix a spelling error of JsonParserExample.ino

This commit is contained in:
Henry Zhang
2018-10-25 20:21:23 +08:00
committed by Benoît Blanchon
parent 00aa038818
commit e842838a23

View File

@ -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.
// //