From 2f20c672e08d3a98441946230c030510293bedc6 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Thu, 12 May 2016 16:29:16 -0700 Subject: [PATCH] Update `_.times` doc example to not duplicate `_.stubTrue`. [ci skip] --- lodash.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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);