Hello rsc (cc: golang-dev@googlegroups.com), I'd like you to review this change.
LGTM On Thu, Sep 2, 2010 at 13:58, <gri@golang.org> wrote: > Reviewers: rsc, > > Message: > Hello rsc (cc: golang-dev@googlegroups.com), > > I'd like you to review this change. > > > Description: > exp/iterables: fix typo > > Fixes issue 1069. > > Please review this at http://codereview.appspot.com/2143041/ > > Affected files: > M src/pkg/exp/iterable/iterable.go > > > Index: src/pkg/exp/iterable/iterable.go > =================================================================== > --- a/src/pkg/exp/iterable/iterable.go > +++ b/src/pkg/exp/iterable/iterable.go > @@ -204,7 +204,7 @@ > }) > } > > -// 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 { > > >
*** Submitted as http://code.google.com/p/go/source/detail?r=1d1670229de3 *** exp/iterables: fix typo Fixes issue 1069. R=rsc CC=golang-dev http://codereview.appspot.com/2143041