From: Robert Hencke Date: Tue, 8 Mar 2011 07:02:07 +0000 (+1100) Subject: flag: failf documentation nit X-Git-Tag: weekly.2011-03-15~85 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=c55fb521cc5ef5e555431f5ac58c0185d190f743;p=gostls13.git flag: failf documentation nit "standard output" should have been "standard error". Sorry about that.. R=adg CC=golang-dev https://golang.org/cl/4240088 --- diff --git a/src/pkg/flag/flag.go b/src/pkg/flag/flag.go index ea6c82f619..0483425f0b 100644 --- a/src/pkg/flag/flag.go +++ b/src/pkg/flag/flag.go @@ -260,7 +260,7 @@ var Usage = func() { var panicOnError = false -// failf prints to standard output a formatted error and Usage, and then exits the program. +// failf prints to standard error a formatted error and Usage, and then exits the program. func failf(format string, a ...interface{}) { fmt.Fprintf(os.Stderr, format, a...) Usage()