From 4fd7880d81be995922f0babf26466ff6a893e483 Mon Sep 17 00:00:00 2001 From: Rob Pike Date: Fri, 18 Jun 2010 20:33:03 -0700 Subject: [PATCH] Effective Go: minor change to correct a comment in an example R=rsc CC=golang-dev https://golang.org/cl/1689042 --- 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 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)
 }