From 7f284d6ed5d657cd199b1ffba5b60325c5b323f0 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Mon, 14 Sep 2015 01:09:04 -0700 Subject: [PATCH] Reduce `_.forEach` iteration note. [ci skip] --- lodash.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lodash.js b/lodash.js index 525054ac5..24474325f 100644 --- a/lodash.js +++ b/lodash.js @@ -6366,8 +6366,8 @@ * Iteratee functions may exit iteration early by explicitly returning `false`. * * **Note:** As with other "Collections" methods, objects with a "length" property - * are iterated like arrays. To avoid this behavior `_.forIn` or `_.forOwn` - * may be used for object iteration. + * are iterated like arrays. To avoid this behavior use `_.forIn` or `_.forOwn` + * for object iteration. * * @static * @memberOf _