From f88d27ccda2d75f6b0569c082530fe18eab39ad9 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Fri, 11 Mar 2016 20:00:08 -0800 Subject: [PATCH] Fix param descriptions for `assocDelete`, `mapSet`, and `stackSet`. [ci skip] --- lodash.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lodash.js b/lodash.js index 702e9fed8..01785407f 100644 --- a/lodash.js +++ b/lodash.js @@ -1910,7 +1910,7 @@ * @memberOf MapCache * @param {string} key The key of the value to set. * @param {*} value The value to set. - * @returns {Object} Returns the map cache object. + * @returns {Object} Returns the map cache instance. */ function mapSet(key, value) { var data = this.__data__; @@ -2081,7 +2081,7 @@ * @memberOf Stack * @param {string} key The key of the value to set. * @param {*} value The value to set. - * @returns {Object} Returns the stack cache object. + * @returns {Object} Returns the stack cache instance. */ function stackSet(key, value) { var data = this.__data__, @@ -2115,7 +2115,7 @@ * Removes `key` and its value from the associative array. * * @private - * @param {Array} array The array to query. + * @param {Array} array The array to modify. * @param {string} key The key of the value to remove. * @returns {boolean} Returns `true` if the entry was removed, else `false`. */