From a03900a12f73fb01bd8943e0d2d5549d9bc5e909 Mon Sep 17 00:00:00 2001 From: Matthew Cottingham Date: Wed, 16 Jul 2014 12:27:25 -0700 Subject: [PATCH] flag: fix typo LGTM=r R=golang-codereviews, gobot, r CC=golang-codereviews https://golang.org/cl/114850043 --- src/pkg/flag/flag.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.48.1