From 8b6bd8442e6ba4604dc092f07b8fdc55efaa9571 Mon Sep 17 00:00:00 2001 From: think2011 <452125301@qq.com> Date: Wed, 13 Jan 2016 23:01:56 +0800 Subject: [PATCH] Fix `_.isMatchWith` doc typo. [ci skip] --- lodash.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lodash.js b/lodash.js index 4c9652fc3..8debf156e 100644 --- a/lodash.js +++ b/lodash.js @@ -9716,7 +9716,7 @@ /** * This method is like `_.isMatch` 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 three + * are handled by the method instead. The `customizer` is invoked with five * arguments: (objValue, srcValue, index|key, object, source). * * @static