From a0c635c0aede2cb0c2f8bb0f0d70485fbdd11bd4 Mon Sep 17 00:00:00 2001 From: Daniel Schroeder Date: Tue, 7 May 2019 02:47:17 +0200 Subject: [PATCH] fix typo in Println description (#60) --- pretty.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pretty.go b/pretty.go index 49423ec..b4ca583 100644 --- a/pretty.go +++ b/pretty.go @@ -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) {