summaryrefslogtreecommitdiff
path: root/usr
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2009-05-08 10:14:55 -0700
committerRuss Cox <rsc@golang.org>2009-05-08 10:14:55 -0700
commit8f5f70c7068188be12a52a9173f14f971e19b00b (patch)
treee56e302d8464f471652df4cd3c8950c7f0c32dac /usr
parentae8bf4bc4ab661b7f5d61e54ef1c285b1d72ae26 (diff)
downloadgolang-8f5f70c7068188be12a52a9173f14f971e19b00b.tar.gz
minor cleanup, not required by compiler changes
R=r DELTA=14 (1 added, 4 deleted, 9 changed) OCL=28447 CL=28509
Diffstat (limited to 'usr')
-rw-r--r--usr/dsymonds/iterable/iterable_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/dsymonds/iterable/iterable_test.go b/usr/dsymonds/iterable/iterable_test.go
index 9a772c2c4..8abba646e 100644
--- a/usr/dsymonds/iterable/iterable_test.go
+++ b/usr/dsymonds/iterable/iterable_test.go
@@ -22,7 +22,7 @@ func (arr IntArray) Iter() <-chan interface {} {
return ch
}
-var oneToFive IntArray = []int{ 1, 2, 3, 4, 5 };
+var oneToFive = IntArray{ 1, 2, 3, 4, 5 };
func isNegative(n interface {}) bool {
return n.(int) < 0