diff options
Diffstat (limited to 'doc/progs/helloworld3.go')
-rw-r--r-- | doc/progs/helloworld3.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/progs/helloworld3.go b/doc/progs/helloworld3.go index 1aa0eab09..ea567fe1b 100644 --- a/doc/progs/helloworld3.go +++ b/doc/progs/helloworld3.go @@ -13,9 +13,9 @@ import ( func main() { hello := []byte{'h', 'e', 'l', 'l', 'o', ',', ' ', 'w', 'o', 'r', 'l', 'd', '\n'}; file.Stdout.Write(hello); - file, err := file.Open("/does/not/exist", 0, 0); + file, err := file.Open("/does/not/exist", 0, 0); if file == nil { - fmt.Printf("can't open file; err=%s\n", err.String()); + fmt.Printf("can't open file; err=%s\n", err.String()); os.Exit(1); } } |