spelling mistakes (#634)

This commit is contained in:
heyanfu 2021-04-17 20:15:19 +08:00 committed by GitHub
parent afd9ff889e
commit 7405d7f506
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -101,7 +101,7 @@ func Map(generate GenerateFunc, mapper MapFunc, opts ...Option) chan interface{}
}
// MapReduce maps all elements generated from given generate func,
// and reduces the output elemenets with given reducer.
// and reduces the output elements with given reducer.
func MapReduce(generate GenerateFunc, mapper MapperFunc, reducer ReducerFunc, opts ...Option) (interface{}, error) {
source := buildSource(generate)
return MapReduceWithSource(source, mapper, reducer, opts...)