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()); }