diff --git a/containers/enumerable.go b/containers/enumerable.go index b0b56e4..ac48b54 100644 --- a/containers/enumerable.go +++ b/containers/enumerable.go @@ -11,7 +11,7 @@ type EnumerableWithIndex interface { // Map invokes the given function once for each element and returns a // container containing the values returned by the given function. - // TODO need help on how to enforce this in containers (don't want to type assert when chaining) + // TODO would appreciate help on how to enforce this in containers (don't want to type assert when chaining) // Map(func(index int, value interface{}) interface{}) Container // Select returns a new container containing all elements for which the given function returns a true value.