From 7dfd7ad5b95442e34de18e2ba0a0845d355c9cac Mon Sep 17 00:00:00 2001 From: jdalton Date: Wed, 6 May 2015 01:37:56 -0700 Subject: [PATCH] Minor adjustments to param docs for `baseCompareAscending` and `matchesProperty`. [ci skip] --- lodash.src.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lodash.src.js b/lodash.src.js index 9370dd5d4..12aff8aef 100644 --- a/lodash.src.js +++ b/lodash.src.js @@ -292,8 +292,8 @@ * sorts them in ascending order without guaranteeing a stable sort. * * @private - * @param {*} value The value to compare to `other`. - * @param {*} other The value to compare to `value`. + * @param {*} value The value to compare. + * @param {*} other The other value to compare. * @returns {number} Returns the sort order indicator for `value`. */ function baseCompareAscending(value, other) { @@ -11378,7 +11378,7 @@ * @memberOf _ * @category Utility * @param {Array|string} path The path of the property to get. - * @param {*} value The value to compare. + * @param {*} value The value to match. * @returns {Function} Returns the new function. * @example *