Fixed misspelling (itertor -> iterator).

peterpolidoro
2014-12-17 07:33:24 -08:00
parent 868141e8ff
commit 843e7a4be8

@@ -140,7 +140,7 @@ If you want to check the type value has a certain type, call `is<T>()`:
You can also iterate through the key-value pairs of the object: 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(it->key);
Serial.println(i->value.asString()); Serial.println(i->value.asString());