From 77178a9583408217d370d1b45aaed6c982de2685 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Mon, 29 Aug 2016 07:37:45 -0700 Subject: [PATCH] Replace chaining `_.forEach` doc example with regular usage. [ci skip] --- lodash.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lodash.js b/lodash.js index 32f8fe00e..f0e8af6b6 100644 --- a/lodash.js +++ b/lodash.js @@ -9104,7 +9104,7 @@ * @see _.forEachRight * @example * - * _([1, 2]).forEach(function(value) { + * _.forEach([1, 2], function(value) { * console.log(value); * }); * // => Logs `1` then `2`.