From a3b76f9259e1d8fee2579b418bab1422622815c3 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Fri, 31 Jul 2015 16:48:51 -0700 Subject: [PATCH] Minor plural nit in `_.sortBy` docs. [ci skip] --- lodash.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lodash.js b/lodash.js index ca337d8ad..76bd6de0d 100644 --- a/lodash.js +++ b/lodash.js @@ -6474,7 +6474,7 @@ * Creates an array of elements, sorted in ascending order by the results of * running each element in a collection through each iteratee. This method * performs a stable sort, that is, it preserves the original sort order of - * equal elements. The iteratee is invoked with three arguments: + * equal elements. The iteratees are invoked with three arguments: * (value, index|key, collection). * * @static