summaryrefslogtreecommitdiff
path: root/spew/dump_test.go
diff options
context:
space:
mode:
authorDave Collins <[email protected]>2013-01-16 23:30:06 -0600
committerDave Collins <[email protected]>2013-01-16 23:30:06 -0600
commitc5fba05307d6a83b518916402fcf1fc867ce0782 (patch)
treed5408b7197f781840304a3d06ac45fed7c72df3e /spew/dump_test.go
parent34805dbdb56b3eecf462f31ade3a29dfb6c8502d (diff)
Fix a comment and a apply few gofmt changes.
Diffstat (limited to 'spew/dump_test.go')
-rw-r--r--spew/dump_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/spew/dump_test.go b/spew/dump_test.go
index 8024fe4..b0e795f 100644
--- a/spew/dump_test.go
+++ b/spew/dump_test.go
@@ -632,7 +632,7 @@ func addFuncDumpTests() {
var v3 = func(i int, s string) (b bool, err error) {
return true, nil
}
- nv3 := (*func(int, string)(bool, error))(nil)
+ nv3 := (*func(int, string) (bool, error))(nil)
pv3 := &v3
v3Addr := fmt.Sprintf("%p", pv3)
pv3Addr := fmt.Sprintf("%p", &pv3)