summaryrefslogtreecommitdiff
path: root/spew/doc.go
diff options
context:
space:
mode:
authorDave Collins <[email protected]>2013-01-19 19:45:01 -0600
committerDave Collins <[email protected]>2013-01-19 19:46:13 -0600
commit1c16a20c214d354cf84ca9646c73fc78b0620f7e (patch)
tree47acf3b36044ebc8308bc870762fa8511591ab06 /spew/doc.go
parentc2fe715681e9f04d71db02e827e48fa80c1f0ee3 (diff)
Make overview ConfigState options order consistent.
Diffstat (limited to 'spew/doc.go')
-rw-r--r--spew/doc.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/spew/doc.go b/spew/doc.go
index 5b0725c..7d00bbd 100644
--- a/spew/doc.go
+++ b/spew/doc.go
@@ -70,14 +70,14 @@ equivalent to the top-level functions. This allows concurrent configuration
options. See the ConfigState documentation for more details.
The following configuration options are available:
- * MaxDepth
- Maximum number of levels to descend into nested data structures.
- There is no limit by default.
-
* Indent
String to use for each indentation level for Dump functions.
It is a single space by default. A popular alternative is "\t".
+ * MaxDepth
+ Maximum number of levels to descend into nested data structures.
+ There is no limit by default.
+
* DisableMethods
Disables invocation of error and Stringer interface methods.
Method invocation is enabled by default.