From: Ashish Gandhi Date: Tue, 17 Apr 2018 23:13:04 +0000 (-0700) Subject: fmt: make %v doc for compound objects consistent X-Git-Tag: go1.11beta1~778 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=86827fd7a16aa4c972d886921c0e63d825ce876d;p=gostls13.git fmt: make %v doc for compound objects consistent The documentation for %v behavior for compound objects uses an ellipsis to indicate indefinite lenght of elements. This is done for struct fields as well as elements of arrays and slices. This adds the missing ellipsis for maps. Change-Id: Ia433387fe189d2daf5095df32085a541458f00a1 Reviewed-on: https://go-review.googlesource.com/107623 Reviewed-by: Brad Fitzpatrick --- diff --git a/src/fmt/doc.go b/src/fmt/doc.go index a8fc4e0c74..f8e4766a65 100644 --- a/src/fmt/doc.go +++ b/src/fmt/doc.go @@ -64,7 +64,7 @@ laid out like this: struct: {field0 field1 ...} array, slice: [elem0 elem1 ...] - maps: map[key1:value1 key2:value2] + maps: map[key1:value1 key2:value2 ...] pointer to above: &{}, &[], &map[] Width is specified by an optional decimal number immediately preceding the verb.