1
0
mirror of https://github.com/nlohmann/json.git synced 2026-07-21 19:23:03 +04:00

+ fixed documentation bugs

This commit is contained in:
Niels
2014-12-30 11:57:58 +01:00
parent 2335d3f3d5
commit 6995d33fb1
2 changed files with 9 additions and 6 deletions
+5 -3
View File
@@ -86,8 +86,10 @@ You can also use streams:
```cpp
// create object from stream
std::stringstream ss;
ss << "{ \"pi\": 3.141, \"happy\": true }";
JSON j;
j << "{ \"pi\": 3.141, \"happy\": true }";
j << ss;
// write string representation to stream
std::cout << j;
@@ -150,8 +152,8 @@ The type of the JSON object is determined automatically by the expression to sto
```cpp
/// strings
std::string s1 = "Hello, world!";
JSON js = s;
std::string s2 = j;
JSON js = s1;
std::string s2 = js;
// Booleans
bool b1 = true;