Document JsonFormat

This commit is contained in:
Alex Beregszaszi
2021-09-21 10:49:13 +01:00
parent 55c64e3ca1
commit b5e68df3cd
+2 -2
View File
@@ -38,8 +38,8 @@ struct JsonFormat
{
enum Format
{
Compact,
Pretty
Compact, // No unnecessary whitespace (including new lines and indentation)
Pretty, // Nicely indented, with new lines
};
static constexpr uint32_t defaultIndent = 2;