Updated Examples (markdown)

Benoît Blanchon
2015-09-01 10:27:14 +02:00
parent 8a2c8d9130
commit f81695a016

@@ -72,7 +72,8 @@ for(JsonArray::iterator it=array.begin(); it!=array.end(); ++it)
```
```c++
JsonObject& object;
char json[] = "{\"key\":\"value\"}";
JsonObject& object = jsonBuffer.parseObject(json);
for(JsonObject::iterator it=object.begin(); it!=object.end(); ++it)
{