diff --git a/lodash.js b/lodash.js index 9495a9f79..cf30b1444 100644 --- a/lodash.js +++ b/lodash.js @@ -15327,8 +15327,8 @@ * _.times(3, String); * // => ['0', '1', '2'] * - * _.times(4, _.constant(true)); - * // => [true, true, true, true] + * _.times(4, _.constant(0)); + * // => [0, 0, 0, 0] */ function times(n, iteratee) { n = toInteger(n);