1
0
mirror of https://github.com/golang/go synced 2024-11-22 00:34:40 -07:00

flag: fix example in doc comment.

Fixes #1615.

R=dsymonds
CC=golang-dev
https://golang.org/cl/4277058
This commit is contained in:
Rob Pike 2011-03-17 15:29:52 -07:00
parent 42bc7fc8ca
commit 52b95970ca

View File

@ -56,7 +56,7 @@
flag.Bool(...) // global options
flag.Parse() // parse leading command
subcmd := flag.Args(0)
subcmd := flag.Arg[0]
switch subcmd {
// add per-subcommand options
}