From 2ebe669d37ca679272c7b694dfa9897abc309a36 Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Fri, 31 Aug 2012 13:29:02 -0400 Subject: [PATCH] Fixes #635: document that _.times passes the iteration count --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 10ecc0c4b..32621dc97 100644 --- a/index.html +++ b/index.html @@ -1361,7 +1361,7 @@

Utility Functions

Invokes the given iterator function n times. Each invocation of iterator is called with an index argument.

-_(3).times(function(){ genie.grantWish(); });
+_(3).times(function(n){ genie.grantWishNumber(n); });

mixin_.mixin(object)