Updated Examples (markdown)

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

@@ -57,7 +57,8 @@ getting the data on JSON format and parsing the buffer:
## Example 3: iterators
```c++
JsonArray& array;
char json[] = "[\"A\",\"B\",\"C\"]";
JsonArray& array = jsonBuffer.parseArray(json);
for(JsonArray::iterator it=array.begin(); it!=array.end(); ++it)
{