minor change

pull/116/head
Niels 2015-08-14 14:56:58 +02:00
parent b58a93b8dd
commit bd5d96c456
1 changed files with 1 additions and 1 deletions

View File

@ -169,7 +169,7 @@ You can also use streams to serialize and deserialize:
```cpp
// deserialize from standard input
json j;
j << std::cin;
std::cin >> j;
// serialize to standard output
std::cout << j;