diff options
| author | Rob Pike <r@golang.org> | 2012-09-27 15:39:56 +1000 |
|---|---|---|
| committer | Rob Pike <r@golang.org> | 2012-09-27 15:39:56 +1000 |
| commit | b46dd48dd3be07216eb8940aa1e2c131adbab405 (patch) | |
| tree | 92e8794ef4f503f515f1bd13b780363dd8295b78 /src/cmd | |
| parent | 791ac65b8271ad374df3877d94c3b5eee9c09537 (diff) | |
| download | go-b46dd48dd3be07216eb8940aa1e2c131adbab405.tar.xz | |
cmd/api: delete redundant text from deletion message
R=bradfitz, minux.ma, rsc
CC=golang-dev
https://golang.org/cl/6543064
Diffstat (limited to 'src/cmd')
| -rw-r--r-- | src/cmd/api/goapi.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cmd/api/goapi.go b/src/cmd/api/goapi.go index 4d888edf16..7463e20d6d 100644 --- a/src/cmd/api/goapi.go +++ b/src/cmd/api/goapi.go @@ -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) } } |
