Replace chaining _.forEach doc example with regular usage. [ci skip]

This commit is contained in:
John-David Dalton
2016-08-29 07:37:45 -07:00
parent d2ab33eb52
commit 77178a9583

View File

@@ -9104,7 +9104,7 @@
* @see _.forEachRight
* @example
*
* _([1, 2]).forEach(function(value) {
* _.forEach([1, 2], function(value) {
* console.log(value);
* });
* // => Logs `1` then `2`.