Skip to content

Commit d0ed87d

Browse files
committed
builtin: remove errant space in hyphenated adjective phrase
Change-Id: I67947e0e3189093e830120941ee49f9f32086f0e Reviewed-on: https://go-review.googlesource.com/11615 Reviewed-by: Rob Pike <r@golang.org>
1 parent 7511806 commit d0ed87d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/builtin/builtin.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -236,14 +236,14 @@ func panic(v interface{})
236236
// panicking.
237237
func recover() interface{}
238238

239-
// The print built-in function formats its arguments in an implementation-
240-
// specific way and writes the result to standard error.
239+
// The print built-in function formats its arguments in an
240+
// implementation-specific way and writes the result to standard error.
241241
// Print is useful for bootstrapping and debugging; it is not guaranteed
242242
// to stay in the language.
243243
func print(args ...Type)
244244

245-
// The println built-in function formats its arguments in an implementation-
246-
// specific way and writes the result to standard error.
245+
// The println built-in function formats its arguments in an
246+
// implementation-specific way and writes the result to standard error.
247247
// Spaces are always added between arguments and a newline is appended.
248248
// Println is useful for bootstrapping and debugging; it is not guaranteed
249249
// to stay in the language.

0 commit comments

Comments
 (0)