commit | 74dd0ab670751feca69ca1aaf4db9859c5e52b41 | [log] [tgz] |
---|---|---|
author | Rob Pike <r@golang.org> | Mon Aug 17 13:30:22 2009 -0700 |
committer | Rob Pike <r@golang.org> | Mon Aug 17 13:30:22 2009 -0700 |
tree | 971cc7e3c955465162133ad90062126ba518107a | |
parent | 3e804ba7a71576ec042cf7c22bf3b53b92b0eb60 [diff] [blame] |
fix up some irregular indentation R=rsc OCL=33382 CL=33391
diff --git a/test/fixedbugs/bug058.go b/test/fixedbugs/bug058.go index da47ae5..e2b4a24 100644 --- a/test/fixedbugs/bug058.go +++ b/test/fixedbugs/bug058.go
@@ -10,10 +10,10 @@ var m map[string] *Box; func main() { - m := make(map[string] *Box); - s := "foo"; - var x *Box = nil; - m[s] = x; + m := make(map[string] *Box); + s := "foo"; + var x *Box = nil; + m[s] = x; } /*