mirror of
https://github.com/golang/go.git
synced 2025-11-01 09:10:57 +00:00
cmd/api: delete redundant text from deletion message
R=bradfitz, minux.ma, rsc CC=golang-dev https://golang.org/cl/6543064
This commit is contained in:
parent
791ac65b82
commit
b46dd48dd3
1 changed files with 2 additions and 1 deletions
|
|
@ -228,13 +228,14 @@ func main() {
|
|||
}
|
||||
}
|
||||
|
||||
// In next file, but not in API.
|
||||
var missing []string
|
||||
for feature := range optional {
|
||||
missing = append(missing, feature)
|
||||
}
|
||||
sort.Strings(missing)
|
||||
for _, feature := range missing {
|
||||
fmt.Fprintf(bw, "(in next file, but not in API) -%s\n", feature)
|
||||
fmt.Fprintf(bw, "±%s\n", feature)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue