1
0
mirror of https://github.com/golang/go synced 2024-10-03 12:31:21 -06:00

flag: fix error in documentation example.

Fixes #1615.
This time for sure.

R=rsc, gri
CC=golang-dev
https://golang.org/cl/4275079
This commit is contained in:
Rob Pike 2011-03-25 11:28:31 -07:00
parent 071d212a22
commit 9db2bc741e

View File

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