From 33a9ebaba14c1d2d1c36b7ed18d31562522f1a17 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Wed, 15 Jul 2015 08:05:55 -0700 Subject: [PATCH] Fix `_.matches` and `_.matchesProperty` doc notes on inherited properties. [ci skip] [closes #1344] --- lodash.src.js | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/lodash.src.js b/lodash.src.js index c65640ed6..44f6e9e23 100644 --- a/lodash.src.js +++ b/lodash.src.js @@ -10601,8 +10601,8 @@ * * **Note:** This method supports comparing arrays, booleans, `Date` objects, * numbers, `Object` objects, regexes, and strings. Objects are compared by - * their own, not inherited, enumerable properties. For comparing a single - * own or inherited property value see `_.matchesProperty`. + * their own and inherited enumerable properties. For comparing a single + * value see `_.matchesProperty`. * * @static * @memberOf _ @@ -10625,11 +10625,10 @@ /** * Creates a function that compares the property value of `path` on a given - * object to `value`. + * object to `srcValue`. * * **Note:** This method supports comparing arrays, booleans, `Date` objects, - * numbers, `Object` objects, regexes, and strings. Objects are compared by - * their own, not inherited, enumerable properties. + * numbers, `Object` objects, regexes, and strings. * * @static * @memberOf _