summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--serialize/json-helper.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/serialize/json-helper.cpp b/serialize/json-helper.cpp
index c350f92e..695b76ef 100644
--- a/serialize/json-helper.cpp
+++ b/serialize/json-helper.cpp
@@ -41,7 +41,7 @@ auto json_helper::from_json_(StringView filename) noexcept(false) -> json
void json_helper::to_json_(const json& j, StringView filename) noexcept(false)
{
- (open_stream<std::ofstream, std::ios_base::out>(filename) << j.dump(1, '\t') << '\n').flush();
+ (open_stream<std::ofstream, std::ios_base::out>(filename) << j.dump(2, ' ') << '\n').flush();
}
} // namespace floormat