diff options
author | Russ Cox <rsc@golang.org> | 2009-09-15 12:42:24 -0700 |
---|---|---|
committer | Russ Cox <rsc@golang.org> | 2009-09-15 12:42:24 -0700 |
commit | e6a328bbdc8f5cad199cda53dab7d310874e06b5 (patch) | |
tree | 8e115ff2eb9c4f2040c2c1b69dc50de1d874981d /usr/dsymonds/iterable/iterable_test.go | |
parent | cf9118ad0e6c9fd6defe78270ea8044c2ed89f28 (diff) | |
download | golang-e6a328bbdc8f5cad199cda53dab7d310874e06b5.tar.gz |
last round: non-package code
R=r
DELTA=127 (38 added, 3 deleted, 86 changed)
OCL=34640
CL=34650
Diffstat (limited to 'usr/dsymonds/iterable/iterable_test.go')
-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 512cac139..28bdfb66f 100644 --- a/usr/dsymonds/iterable/iterable_test.go +++ b/usr/dsymonds/iterable/iterable_test.go @@ -13,7 +13,7 @@ type IntArray []int; func (arr IntArray) Iter() <-chan interface {} { ch := make(chan interface {}); go func() { - for i, x := range arr { + for _, x := range arr { ch <- x } close(ch) |