fixing comment for #239

This commit is contained in:
Jeremy Ashkenas
2011-07-12 15:23:23 -04:00
parent 5eaf71f101
commit fbae682e8f

View File

@@ -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;