summaryrefslogtreecommitdiff
path: root/doc/progs/helloworld3.go
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2009-10-06 11:42:55 -0700
committerRuss Cox <rsc@golang.org>2009-10-06 11:42:55 -0700
commit7636530195eca76c1b3cfe88e08ee03a0fa7c956 (patch)
tree6adfb0f49f1968038df0cc5ba24d78f398857faa /doc/progs/helloworld3.go
parent23d4b24dfe7821a69a39f1dadaff0ade9f26efa3 (diff)
downloadgolang-7636530195eca76c1b3cfe88e08ee03a0fa7c956.tar.gz
apply gofmt to the LGTM-marked files from 34501
that have not changed since I applied gofmt. R=gri DELTA=456 (77 added, 3 deleted, 376 changed) OCL=35378 CL=35383
Diffstat (limited to 'doc/progs/helloworld3.go')
-rw-r--r--doc/progs/helloworld3.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/progs/helloworld3.go b/doc/progs/helloworld3.go
index ea567fe1b..1aa0eab09 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);
}
}