mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
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>
This commit is contained in:
parent
7511806ec2
commit
d0ed87d15c
1 changed files with 4 additions and 4 deletions
|
|
@ -236,14 +236,14 @@ func panic(v interface{})
|
||||||
// panicking.
|
// panicking.
|
||||||
func recover() interface{}
|
func recover() interface{}
|
||||||
|
|
||||||
// The print built-in function formats its arguments in an implementation-
|
// The print built-in function formats its arguments in an
|
||||||
// specific way and writes the result to standard error.
|
// implementation-specific way and writes the result to standard error.
|
||||||
// Print is useful for bootstrapping and debugging; it is not guaranteed
|
// Print is useful for bootstrapping and debugging; it is not guaranteed
|
||||||
// to stay in the language.
|
// to stay in the language.
|
||||||
func print(args ...Type)
|
func print(args ...Type)
|
||||||
|
|
||||||
// The println built-in function formats its arguments in an implementation-
|
// The println built-in function formats its arguments in an
|
||||||
// specific way and writes the result to standard error.
|
// implementation-specific way and writes the result to standard error.
|
||||||
// Spaces are always added between arguments and a newline is appended.
|
// Spaces are always added between arguments and a newline is appended.
|
||||||
// Println is useful for bootstrapping and debugging; it is not guaranteed
|
// Println is useful for bootstrapping and debugging; it is not guaranteed
|
||||||
// to stay in the language.
|
// to stay in the language.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue