Skip to content

Commit

Permalink
fix typo in Println description (#60)
Browse files Browse the repository at this point in the history
  • Loading branch information
udondan authored and kr committed May 7, 2019
1 parent 73f6ac0 commit a0c635c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pretty.go
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ func Printf(format string, a ...interface{}) (n int, errno error) {

// Println pretty-prints its operands and writes to standard output.
//
// Calling Print(x, y) is equivalent to
// Calling Println(x, y) is equivalent to
// fmt.Println(Formatter(x), Formatter(y)), but each operand is
// formatted with "%# v".
func Println(a ...interface{}) (n int, errno error) {
Expand Down

0 comments on commit a0c635c

Please sign in to comment.