summaryrefslogtreecommitdiff
path: root/zen/json.h
diff options
context:
space:
mode:
Diffstat (limited to 'zen/json.h')
-rw-r--r--zen/json.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/zen/json.h b/zen/json.h
index 725874f7..0d23719c 100644
--- a/zen/json.h
+++ b/zen/json.h
@@ -43,7 +43,7 @@ struct JsonValue
std::string serializeJson(const JsonValue& jval,
- const std::string& lineBreak = "\r\n",
+ const std::string& lineBreak = "\n",
const std::string& indent = " "); //noexcept
bgstack15