]> Cypherpunks repositories - gostls13.git/commitdiff
cmd/api: delete redundant text from deletion message
authorRob Pike <r@golang.org>
Thu, 27 Sep 2012 05:39:56 +0000 (15:39 +1000)
committerRob Pike <r@golang.org>
Thu, 27 Sep 2012 05:39:56 +0000 (15:39 +1000)
R=bradfitz, minux.ma, rsc
CC=golang-dev
https://golang.org/cl/6543064

src/cmd/api/goapi.go

index 4d888edf169b320a6b8c993b1db0b1dcc6f136d8..7463e20d6dc40f4e1e1d288c4b347ae99e6321ae 100644 (file)
@@ -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)
        }
 }