From fbae682e8fa29c7e4e2fb2c74ed98e81ac11284b Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Tue, 12 Jul 2011 15:23:23 -0400 Subject: [PATCH] fixing comment for #239 --- underscore.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/underscore.js b/underscore.js index 43502f328..0ae93fb4a 100644 --- a/underscore.js +++ b/underscore.js @@ -66,7 +66,7 @@ // -------------------- // The cornerstone, an `each` implementation, aka `forEach`. - // Handles objects implementing `forEach`, arrays, and raw objects. + // Handles objects with the built-in `forEach`, arrays, and raw objects. // Delegates to **ECMAScript 5**'s native `forEach` if available. var each = _.each = _.forEach = function(obj, iterator, context) { if (obj == null) return;