From 910af6797ffd9197f54bce2c41735e88023f3dfd Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Wed, 11 May 2011 11:00:15 -0400 Subject: [PATCH] Fixing #185 --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); });