From 64e765bf7a283f07d5746397214384116b6f1055 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Thu, 12 May 2016 13:57:14 -0700 Subject: [PATCH] Fix `_.stubFalse` doc example typo. [ci skip] --- lodash.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lodash.js b/lodash.js index 9de4e5757..18c09a298 100644 --- a/lodash.js +++ b/lodash.js @@ -15260,7 +15260,7 @@ * @returns {boolean} Returns `false`. * @example * - * _.times(2 _.stubFalse); + * _.times(2, _.stubFalse); * // => [false, false] */ var stubFalse = constant(false);