summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Pike <r@golang.org>2009-01-14 08:43:32 -0800
committerRob Pike <r@golang.org>2009-01-14 08:43:32 -0800
commit54fc100103e34151e4e59609cf587d132f5e98bb (patch)
treefc901f167f2863618f55d47bc39f1cc913471ec3
parenta63ccec27d31a9fca5e29ef5321d4b9f9e863198 (diff)
downloadgolang-54fc100103e34151e4e59609cf587d132f5e98bb.tar.gz
restore "os" identifier to keep consistent with text.
R=presotto OCL=22733 CL=22733
-rw-r--r--doc/progs/helloworld2.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/progs/helloworld2.go b/doc/progs/helloworld2.go
index b40905565..66b32ed54 100644
--- a/doc/progs/helloworld2.go
+++ b/doc/progs/helloworld2.go
@@ -4,7 +4,7 @@
package main
-import "os" // this package contains features for basic I/O
+import os "os" // this package contains features for basic I/O
func main() {
os.Stdout.WriteString("Hello, world; or Καλημέρα κόσμε; or こんにちは 世界\n");