From 9d033247e961bdda09a9295910fc647bd32b1b65 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Sun, 17 Jan 2016 23:08:58 -0600 Subject: [PATCH] Correct arg count in `_.isEqualWit` doc note. [ci skip] --- lodash.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lodash.js b/lodash.js index 2c026490c..062a45d17 100644 --- a/lodash.js +++ b/lodash.js @@ -9496,7 +9496,7 @@ /** * This method is like `_.isEqual` except that it accepts `customizer` which is * invoked to compare values. If `customizer` returns `undefined` comparisons are - * handled by the method instead. The `customizer` is invoked with up to seven arguments: + * handled by the method instead. The `customizer` is invoked with up to six arguments: * (objValue, othValue [, index|key, object, other, stack]). * * @static