diff --git a/index.html b/index.html index afef3e5ac..3c0ce397f 100644 --- a/index.html +++ b/index.html @@ -521,8 +521,8 @@

Collection Functions (Arrays or Objects)

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

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