From 70d0b6b242a2c6c6983b7189df6e8140ed479661 Mon Sep 17 00:00:00 2001 From: Rob Pike Date: Wed, 3 Nov 2010 11:09:43 -0700 Subject: [PATCH] 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 --- doc/effective_go.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.

-- 2.50.0