From 843e7a4be8d61e252aed3487047c201f2158bb15 Mon Sep 17 00:00:00 2001 From: peterpolidoro Date: Wed, 17 Dec 2014 07:33:24 -0800 Subject: [PATCH] Fixed misspelling (itertor -> iterator). --- Decoding JSON.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Decoding JSON.md b/Decoding JSON.md index 3db7162..7a5165c 100644 --- a/Decoding JSON.md +++ b/Decoding JSON.md @@ -140,7 +140,7 @@ If you want to check the type value has a certain type, call `is()`: You can also iterate through the key-value pairs of the object: - for (JsonObject::itertor it=root.begin(); it!=root.end(); ++it) + for (JsonObject::iterator it=root.begin(); it!=root.end(); ++it) { Serial.println(it->key); Serial.println(i->value.asString());