From 9a152c23bb285c6596aa346adef6ae95abad4875 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Mon, 9 Jun 2014 00:17:25 -0700 Subject: [PATCH] Minor `_.sortBy` doc nit. [ci skip] --- lodash.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lodash.js b/lodash.js index a144a6dab..8344b2db6 100644 --- a/lodash.js +++ b/lodash.js @@ -5073,8 +5073,8 @@ * @category Collections * @param {Array|Object|string} collection The collection to iterate over. * @param {Array|Function|Object|string} [callback=identity] The function - * called per iteration. If a property name or object is provided it is - * used to create a "_.pluck" or "_.where" style callback respectively. + * called per iteration. If property name(s) or an object is provided it + * is used to create a "_.pluck" or "_.where" style callback respectively. * @param {*} [thisArg] The `this` binding of `callback`. * @returns {Array} Returns the new sorted array. * @example