diff options
author | Russ Cox <rsc@golang.org> | 2009-10-14 13:02:05 -0700 |
---|---|---|
committer | Russ Cox <rsc@golang.org> | 2009-10-14 13:02:05 -0700 |
commit | b3aeb555efb438df25e26413c8472e87517a76e8 (patch) | |
tree | 61be8c6ea6f2dfcc239d6ac55de123e6b367496f /doc/go_tutorial.html | |
parent | 0d2b13ebbbd20a54c6f0cc048993b104165d85d0 (diff) | |
download | golang-b3aeb555efb438df25e26413c8472e87517a76e8.tar.gz |
excise some internal references.
R=r
DELTA=209 (65 added, 114 deleted, 30 changed)
OCL=35718
CL=35721
Diffstat (limited to 'doc/go_tutorial.html')
-rw-r--r-- | doc/go_tutorial.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/go_tutorial.html b/doc/go_tutorial.html index cdf1443e9..91bee3fa8 100644 --- a/doc/go_tutorial.html +++ b/doc/go_tutorial.html @@ -57,7 +57,7 @@ Next up, here's a version of the Unix utility <code>echo(1)</code>: <p> 07 import ( 08 "os"; -09 "flag"; +09 "flag"; // command line option parser 10 ) <p> 12 var n_flag = flag.Bool("n", false, "don't print final newline") |