diff --git a/README.md b/README.md index 203f113458..34b53ce44d 100644 --- a/README.md +++ b/README.md @@ -119,7 +119,11 @@ auto j2 = R"( { "happy": true, "pi": 3.141 - })"_json; + } +)"_json; + +// or explicitly +auto j3 = json::parse("{ \"happy\": true, \"pi\": 3.141 }"); ``` You can also get a string representation (serialize):