Commit a37e3697 authored by Robert Griesemer's avatar Robert Griesemer

exp/iterables: fix typo

Fixes #1069.

R=rsc
CC=golang-dev
https://golang.org/cl/2143041
parent f699811c
......@@ -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 {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment