Skip to content

Commit

Permalink
builtin: remove errant space in hyphenated adjective phrase
Browse files Browse the repository at this point in the history
Change-Id: I67947e0e3189093e830120941ee49f9f32086f0e
Reviewed-on: https://go-review.googlesource.com/11615
Reviewed-by: Rob Pike <[email protected]>
  • Loading branch information
bradfitz committed Jun 28, 2015
1 parent 7511806 commit d0ed87d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/builtin/builtin.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit d0ed87d

Please sign in to comment.