From: Rob Pike Date: Wed, 14 Jan 2009 16:43:32 +0000 (-0800) Subject: restore "os" identifier to keep consistent with text. X-Git-Tag: weekly.2009-11-06~2382 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=ef51f4baf44ea7669392c007c9563c21727f017f;p=gostls13.git restore "os" identifier to keep consistent with text. R=presotto OCL=22733 CL=22733 --- diff --git a/doc/progs/helloworld2.go b/doc/progs/helloworld2.go index b409055659..66b32ed542 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");