]> Cypherpunks repositories - gostls13.git/commitdiff
builtin: remove errant space in hyphenated adjective phrase
authorBrad Fitzpatrick <bradfitz@golang.org>
Sun, 28 Jun 2015 19:21:42 +0000 (12:21 -0700)
committerBrad Fitzpatrick <bradfitz@golang.org>
Sun, 28 Jun 2015 21:41:38 +0000 (21:41 +0000)
Change-Id: I67947e0e3189093e830120941ee49f9f32086f0e
Reviewed-on: https://go-review.googlesource.com/11615
Reviewed-by: Rob Pike <r@golang.org>
src/builtin/builtin.go

index 51550a459cb69788d5b9060b4cb69a8d82ccb6df..d63ad22c32d46d7fbf68702c7d08113a6830a328 100644 (file)
@@ -236,14 +236,14 @@ func panic(v interface{})
 // panicking.
 func recover() interface{}
 
-// The print built-in function formats its arguments in an implementation-
-// specific way and writes the result to standard error.
+// The print built-in function formats its arguments in an
+// implementation-specific way and writes the result to standard error.
 // Print is useful for bootstrapping and debugging; it is not guaranteed
 // to stay in the language.
 func print(args ...Type)
 
-// The println built-in function formats its arguments in an implementation-
-// specific way and writes the result to standard error.
+// The println built-in function formats its arguments in an
+// implementation-specific way and writes the result to standard error.
 // Spaces are always added between arguments and a newline is appended.
 // Println is useful for bootstrapping and debugging; it is not guaranteed
 // to stay in the language.