From: Rob Pike Date: Wed, 3 Nov 2010 18:09:43 +0000 (-0700) Subject: Effective Go: correct error in recent edit: "..." is in call to Sprintln, not Output. X-Git-Tag: weekly.2010-11-10~45 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=70d0b6b242a2c6c6983b7189df6e8140ed479661;p=gostls13.git Effective Go: correct error in recent edit: "..." is in call to Sprintln, not Output. R=rsc, gri CC=golang-dev https://golang.org/cl/2853042 --- diff --git a/doc/effective_go.html b/doc/effective_go.html index 075f863195..8bb04e9176 100644 --- a/doc/effective_go.html +++ b/doc/effective_go.html @@ -1470,7 +1470,7 @@ func Println(v ...interface{}) { }

-We write ... after v in the call to Output to tell the +We write ... after v in the nested call to Sprintln to tell the compiler to treat v as a list of arguments; otherwise it would just pass v as a single slice argument.