From: Matthew Cottingham Date: Wed, 16 Jul 2014 19:27:25 +0000 (-0700) Subject: flag: fix typo X-Git-Tag: go1.4beta1~1086 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=a03900a12f73fb01bd8943e0d2d5549d9bc5e909;p=gostls13.git flag: fix typo LGTM=r R=golang-codereviews, gobot, r CC=golang-codereviews https://golang.org/cl/114850043 --- diff --git a/src/pkg/flag/flag.go b/src/pkg/flag/flag.go index 5797cc79d4..fa7760550c 100644 --- a/src/pkg/flag/flag.go +++ b/src/pkg/flag/flag.go @@ -830,7 +830,7 @@ func Parsed() bool { } // CommandLine is the default set of command-line flags, parsed from os.Args. -// The top-level functions such as BoolVar, Arg, and on are wrappers for the +// The top-level functions such as BoolVar, Arg, and so on are wrappers for the // methods of CommandLine. var CommandLine = NewFlagSet(os.Args[0], ExitOnError)