Document JsonFormat

This commit is contained in:
Alex Beregszaszi 2021-09-15 19:18:42 +01:00
parent 55c64e3ca1
commit b5e68df3cd

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;