From 0446a1b3a85b7c1e05383c89b43a43e2341b6085 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Sat, 25 Jan 2014 02:52:14 -0800 Subject: [PATCH] Tweak documented arg name `key` for `_.pluck`. [ci skip] --- lodash.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lodash.js b/lodash.js index 6393c61c9..7fc7c669d 100644 --- a/lodash.js +++ b/lodash.js @@ -4063,7 +4063,7 @@ * @type Function * @category Collections * @param {Array|Object|string} collection The collection to iterate over. - * @param {string} prop The name of the property to pluck. + * @param {string} key The name of the property to pluck. * @returns {Array} Returns a new array of property values. * @example *