From: Brad Fitzpatrick Date: Sun, 28 Jun 2015 19:21:42 +0000 (-0700) Subject: builtin: remove errant space in hyphenated adjective phrase X-Git-Tag: go1.5beta1~76 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=d0ed87d15c8ae32b6705815085408c9fba831f81;p=gostls13.git builtin: remove errant space in hyphenated adjective phrase Change-Id: I67947e0e3189093e830120941ee49f9f32086f0e Reviewed-on: https://go-review.googlesource.com/11615 Reviewed-by: Rob Pike --- diff --git a/src/builtin/builtin.go b/src/builtin/builtin.go index 51550a459c..d63ad22c32 100644 --- a/src/builtin/builtin.go +++ b/src/builtin/builtin.go @@ -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.