From 40461c6c55721ac7418bb29c7502da373c3f88ef Mon Sep 17 00:00:00 2001 From: Ryan Mulder Date: Tue, 11 Jul 2017 13:59:07 -0400 Subject: [PATCH] update comment on dump to not indicate that ensure_ascii is true by default --- src/json.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/json.hpp b/src/json.hpp index 406b6fe0..605b2aad 100644 --- a/src/json.hpp +++ b/src/json.hpp @@ -9047,9 +9047,9 @@ class basic_json representation. @param[in] indent_char The character to use for indentation if @a indent is greater than `0`. The default is ` ` (space). - @param[in] ensure_ascii If ensure_ascii is true (the default), all non-ASCII - characters in the output are escaped with \uXXXX sequences, and the result - consists of ASCII characters only. + @param[in] ensure_ascii If ensure_ascii is true, all non-ASCII characters + in the output are escaped with \uXXXX sequences, and the result consists + of ASCII characters only. @return string containing the serialization of the JSON value