1
0
mirror of https://github.com/nlohmann/json synced 2024-11-10 06:20:06 +00:00

minor change

This commit is contained in:
Niels 2015-08-14 14:56:58 +02:00
parent b58a93b8dd
commit bd5d96c456

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;