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.