mirror of
https://github.com/golang/go
synced 2024-11-17 23:04:56 -07:00
cmd/doc: slice/map literals janitoring
Simplify slice/map literal expression. Caught with gofmt -d -s Change-Id: I7f38ef9fb528e2fd284bd0f190fbdf4a91956e55 Reviewed-on: https://go-review.googlesource.com/13834 Reviewed-by: Andrew Gerrand <adg@golang.org>
This commit is contained in:
parent
400bb82678
commit
41713b4d2b
@ -467,11 +467,7 @@ func trimUnexportedFields(fields *ast.FieldList, what string) *ast.FieldList {
|
||||
unexportedField := &ast.Field{
|
||||
Type: ast.NewIdent(""), // Hack: printer will treat this as a field with a named type.
|
||||
Comment: &ast.CommentGroup{
|
||||
List: []*ast.Comment{
|
||||
&ast.Comment{
|
||||
Text: fmt.Sprintf("// Has unexported %s.\n", what),
|
||||
},
|
||||
},
|
||||
List: []*ast.Comment{{Text: fmt.Sprintf("// Has unexported %s.\n", what)}},
|
||||
},
|
||||
}
|
||||
return &ast.FieldList{
|
||||
|
Loading…
Reference in New Issue
Block a user