From e842838a2362fa3ca7b5c30c397ebfc68f1fabfc Mon Sep 17 00:00:00 2001 From: Henry Zhang Date: Thu, 25 Oct 2018 20:21:23 +0800 Subject: [PATCH] fix a spelling error of JsonParserExample.ino --- examples/JsonParserExample/JsonParserExample.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/JsonParserExample/JsonParserExample.ino b/examples/JsonParserExample/JsonParserExample.ino index 3e4e7ac8..efbe7499 100644 --- a/examples/JsonParserExample/JsonParserExample.ino +++ b/examples/JsonParserExample/JsonParserExample.ino @@ -19,9 +19,9 @@ void setup() { StaticJsonDocument<200> doc; // StaticJsonDocument 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. //