From 7127d404d2addc9a8518b95ee34c4bc012c43898 Mon Sep 17 00:00:00 2001
From: Jeremy Ashkenas
Date: Sun, 8 Nov 2009 14:25:54 -0500
Subject: [PATCH] correcting documentation
---
index.html | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/index.html b/index.html
index dc65e3f33..753942fcc 100644
--- a/index.html
+++ b/index.html
@@ -232,8 +232,8 @@ _(lyrics).chain()
function. The iterator is bound to the context object, if one is
passed. Each invocation of iterator is called with three arguments:
(element, index, list). If list is a JavaScript object, iterator's
- arguments will be (value, key, list). If the list has an each
- method of its own, it will be used instead. Delegates to the native
+ arguments will be (value, key, list). Use breakLoop
+ to break out of the iteration. Delegates to the native
forEach function if it exists.