Commit 52b95970 authored by Rob Pike's avatar Rob Pike

flag: fix example in doc comment.

Fixes #1615.

R=dsymonds
CC=golang-dev
https://golang.org/cl/4277058
parent 42bc7fc8
...@@ -56,7 +56,7 @@ ...@@ -56,7 +56,7 @@
flag.Bool(...) // global options flag.Bool(...) // global options
flag.Parse() // parse leading command flag.Parse() // parse leading command
subcmd := flag.Args(0) subcmd := flag.Arg[0]
switch subcmd { switch subcmd {
// add per-subcommand options // add per-subcommand options
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment