]> Cypherpunks repositories - gostls13.git/commitdiff
exp/iterables: fix typo
authorRobert Griesemer <gri@golang.org>
Thu, 2 Sep 2010 18:31:00 +0000 (11:31 -0700)
committerRobert Griesemer <gri@golang.org>
Thu, 2 Sep 2010 18:31:00 +0000 (11:31 -0700)
Fixes #1069.

R=rsc
CC=golang-dev
https://golang.org/cl/2143041

src/pkg/exp/iterable/iterable.go

index 85e5f38b0ebe179a39a697b609f390d24d9da9ae..ef6b9c47694dd42f0b1e7d1fd36ed96ccd1e7554 100644 (file)
@@ -204,7 +204,7 @@ func Cycle(iter Iterable) Iterable {
        })
 }
 
-// Chain returns an Iterable that concatentates all values from the specified Iterables.
+// Chain returns an Iterable that concatenates all values from the specified Iterables.
 func Chain(args []Iterable) Iterable {
        return Func(func(ch chan<- interface{}) {
                for _, e := range args {