diff --git a/index.html b/index.html index f0c754728..9cbc3a0a7 100644 --- a/index.html +++ b/index.html @@ -431,8 +431,8 @@ _.min(numbers);

sortBy_.sortBy(list, iterator, [context])
- Returns a sorted list, ranked by the results of running each - value through iterator. + Returns a sorted copy of list, ranked by the results of running + each value through iterator.

 _.sortBy([1, 2, 3, 4, 5, 6], function(num){ return Math.sin(num); });