summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/rapidjson/doc/tutorial.md
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/rapidjson/doc/tutorial.md')
-rw-r--r--3rdparty/rapidjson/doc/tutorial.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/3rdparty/rapidjson/doc/tutorial.md b/3rdparty/rapidjson/doc/tutorial.md
index 121102345b4..0da07dc5d91 100644
--- a/3rdparty/rapidjson/doc/tutorial.md
+++ b/3rdparty/rapidjson/doc/tutorial.md
@@ -166,7 +166,7 @@ If we are unsure whether a member exists, we need to call `HasMember()` before c
~~~~~~~~~~cpp
Value::ConstMemberIterator itr = document.FindMember("hello");
if (itr != document.MemberEnd())
- printf("%s %s\n", itr->value.GetString());
+ printf("%s\n", itr->value.GetString());
~~~~~~~~~~
## Querying Number {#QueryNumber}