made pretty module default config and doc comments consistent order

This commit is contained in:
Max Cahill 2021-07-05 16:18:03 +10:00
parent 3c5455d616
commit 67019de5b5

View File

@ -10,13 +10,13 @@
all exposed functions take a config table, defaults found in pretty.default_config all exposed functions take a config table, defaults found in pretty.default_config
per_line
how many fields to print per line
indent indent
indentation to use for each line, or "" for single-line packed indentation to use for each line, or "" for single-line packed
can be a number of spaces, boolean, or a string to use verbatim can be a number of spaces, boolean, or a string to use verbatim
depth depth
a limit on how deep to explore the table a limit on how deep to explore the table
per_line
how many fields to print per line
]] ]]
local path = (...):gsub("pretty", "") local path = (...):gsub("pretty", "")
@ -25,9 +25,9 @@ local table = require(path.."tablex") --shadow global table module
local pretty = {} local pretty = {}
pretty.default_config = { pretty.default_config = {
per_line = 1,
depth = math.huge,
indent = true, indent = true,
depth = math.huge,
per_line = 1,
} }
--indentation to use when `indent = true` is provided --indentation to use when `indent = true` is provided