From f86bff3bf70b7c692517454ebb692d835245fd36 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Mon, 7 Sep 2015 22:29:13 -0700 Subject: [PATCH] Minor `_.modArgsSet` doc example tweak. [ci skip] --- lodash.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lodash.js b/lodash.js index a0e0ce059..fed6cd91e 100644 --- a/lodash.js +++ b/lodash.js @@ -7633,14 +7633,14 @@ * @returns {Function} Returns the new function. * @example * - * function multiply(x, y) { - * return x * y; - * } - * * function divide(x, y) { * return x / y; * } * + * function multiply(x, y) { + * return x * y; + * } + * * var modded = _.modArgsSet(function(x, y) { * return [x, y]; * }, multiply, divide);