diff options
author | Russ Cox <rsc@golang.org> | 2009-05-08 10:14:55 -0700 |
---|---|---|
committer | Russ Cox <rsc@golang.org> | 2009-05-08 10:14:55 -0700 |
commit | 8f5f70c7068188be12a52a9173f14f971e19b00b (patch) | |
tree | e56e302d8464f471652df4cd3c8950c7f0c32dac /usr | |
parent | ae8bf4bc4ab661b7f5d61e54ef1c285b1d72ae26 (diff) | |
download | golang-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.go | 2 |
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 |