From ecd8b7f614235d124fd688339cca0b6010aee5f0 Mon Sep 17 00:00:00 2001 From: Nathan Bellowe Date: Sun, 30 Aug 2015 01:20:37 -0600 Subject: [PATCH] Update `_.modArgs` doc example to better show the method's affect. [ci skip] --- lodash.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lodash.js b/lodash.js index 147373083..ca7c770c5 100644 --- a/lodash.js +++ b/lodash.js @@ -7373,8 +7373,8 @@ * return [x, y]; * }, square, doubled); * - * modded(1, 2); - * // => [1, 4] + * modded(3, 4); + * // => [9, 8] * * modded(5, 10); * // => [25, 20]