diff --git a/doc/effective_go.html b/doc/effective_go.html index 86c24664f31..41a7b8af93e 100644 --- a/doc/effective_go.html +++ b/doc/effective_go.html @@ -1457,7 +1457,7 @@ function log.Stderr we used above. It passes its arguments directly fmt.Sprintln for the actual formatting.

-// Stderr is a helper function for easy logging to stderr. It is analogous to Fprint(os.Stderr).
+// Stderr is a helper function for easy logging to stderr. It is analogous to Fprintln(os.Stderr).
 func Stderr(v ...interface{}) {
     stderr.Output(2, fmt.Sprintln(v))  // Output takes parameters (int, string)
 }