From 4673683cbc5c7e26942370ebfbead1f4b767f70d Mon Sep 17 00:00:00 2001 From: Emir Pasic Date: Tue, 12 Sep 2017 12:48:36 +0200 Subject: [PATCH] Update enumerable.go --- containers/enumerable.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.