From adf9d1b659e3cf90963a413b4f38e4d328ec42b6 Mon Sep 17 00:00:00 2001 From: murmlgrmpf Date: Wed, 24 Dec 2014 02:21:59 -0800 Subject: [PATCH] typo fixed --- Decoding JSON.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Decoding JSON.md b/Decoding JSON.md index 7a5165c..c09ba7b 100644 --- a/Decoding JSON.md +++ b/Decoding JSON.md @@ -143,5 +143,5 @@ You can also iterate through the key-value pairs of the object: for (JsonObject::iterator it=root.begin(); it!=root.end(); ++it) { Serial.println(it->key); - Serial.println(i->value.asString()); + Serial.println(it->value.asString()); }