summaryrefslogtreecommitdiff
path: root/spew/format.go
diff options
context:
space:
mode:
Diffstat (limited to 'spew/format.go')
-rw-r--r--spew/format.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/spew/format.go b/spew/format.go
index fc57fda..b6b1fb0 100644
--- a/spew/format.go
+++ b/spew/format.go
@@ -303,7 +303,7 @@ func (f *formatState) format(v reflect.Value) {
} else {
keys := v.MapKeys()
if f.cs.SortKeys {
- SortValues(keys)
+ sortValues(keys)
}
for i, key := range keys {
if i > 0 {