Преглед изворни кода

fix a spelling error of JsonParserExample.ino

Henry Zhang пре 7 година
родитељ
комит
e842838a23
1 измењених фајлова са 2 додато и 2 уклоњено
  1. 2 2
      examples/JsonParserExample/JsonParserExample.ino

+ 2 - 2
examples/JsonParserExample/JsonParserExample.ino

@@ -19,9 +19,9 @@ void setup() {
   StaticJsonDocument<200> doc;
 
   // 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.
   //