Commit b46dd48d authored by Rob Pike's avatar Rob Pike

cmd/api: delete redundant text from deletion message

R=bradfitz, minux.ma, rsc
CC=golang-dev
https://golang.org/cl/6543064
parent 791ac65b
......@@ -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)
}
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment