diff options
| author | Robert Griesemer <gri@golang.org> | 2010-03-02 13:46:51 -0800 | 
|---|---|---|
| committer | Robert Griesemer <gri@golang.org> | 2010-03-02 13:46:51 -0800 | 
| commit | 10f55215a4d4ac643bf04202704b4fec01417bba (patch) | |
| tree | e6032529c69dbf4925dc7da8a0641ff6bb264b3d /src/pkg/xml/xml_test.go | |
| parent | edc1c5e40d5b639a38b7a0b7484d51edab3bcb62 (diff) | |
| download | golang-10f55215a4d4ac643bf04202704b4fec01417bba.tar.gz | |
gofmt: experiment: align values in map composites where possible
- gofmt -w src misc
- looking for feedback
R=rsc, r
CC=golang-dev
http://codereview.appspot.com/223076
Diffstat (limited to 'src/pkg/xml/xml_test.go')
| -rw-r--r-- | src/pkg/xml/xml_test.go | 32 | 
1 files changed, 16 insertions, 16 deletions
| diff --git a/src/pkg/xml/xml_test.go b/src/pkg/xml/xml_test.go index 2bd084fd8..3749a3a53 100644 --- a/src/pkg/xml/xml_test.go +++ b/src/pkg/xml/xml_test.go @@ -238,25 +238,25 @@ type allScalars struct {  }  var all = allScalars{ -	True1: true, -	True2: true, -	False1: false, -	False2: false, -	Int: 1, -	Int8: -2, -	Int16: 3, -	Int32: -4, -	Int64: 5, -	Uint: 6, -	Uint8: 7, -	Uint16: 8, -	Uint32: 9, -	Uint64: 10, +	True1:   true, +	True2:   true, +	False1:  false, +	False2:  false, +	Int:     1, +	Int8:    -2, +	Int16:   3, +	Int32:   -4, +	Int64:   5, +	Uint:    6, +	Uint8:   7, +	Uint16:  8, +	Uint32:  9, +	Uint64:  10,  	Uintptr: 11, -	Float: 12.0, +	Float:   12.0,  	Float32: 13.0,  	Float64: 14.0, -	String: "15", +	String:  "15",  }  const testScalarsInput = `<allscalars> | 
