exp/iterables: fix typo

Fixes #1069.

R=rsc
CC=golang-dev
https://golang.org/cl/2143041
This commit is contained in:
Robert Griesemer 2010-09-02 11:31:00 -07:00
parent f699811c14
commit a37e3697da

View 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 {