From bd5d96c4564e37372059dcdae9915e23c381d242 Mon Sep 17 00:00:00 2001 From: Niels Date: Fri, 14 Aug 2015 14:56:58 +0200 Subject: [PATCH] minor change --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f337bf63d..01d65929a 100644 --- a/README.md +++ b/README.md @@ -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;