summaryrefslogtreecommitdiff
path: root/doc/progs/print_string.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/print_string.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/print_string.go')
-rw-r--r--doc/progs/print_string.go9
1 files changed, 6 insertions, 3 deletions
diff --git a/doc/progs/print_string.go b/doc/progs/print_string.go
index 13a8d8241..7526f79fb 100644
--- a/doc/progs/print_string.go
+++ b/doc/progs/print_string.go
@@ -6,13 +6,16 @@ package main
import "fmt"
-type testType struct { a int; b string }
+type testType struct {
+ a int;
+ b string;
+}
func (t *testType) String() string {
- return fmt.Sprint(t.a) + " " + t.b
+ return fmt.Sprint(t.a) + " " + t.b;
}
func main() {
t := &testType{77, "Sunset Strip"};
- fmt.Println(t)
+ fmt.Println(t);
}