Add issue reference to README.md.

Former-commit-id: 09ed4e386b55f657d8710f40c14fb3b283d66b7c
This commit is contained in:
John-David Dalton
2012-06-29 04:01:58 -04:00
parent 0bf374454e
commit a1e0fbea8b
2 changed files with 3 additions and 3 deletions

View File

@@ -327,7 +327,7 @@
deepEqual(actual.constructor, [1.3]);
deepEqual(actual.hasOwnProperty, [2.1, 2.4]);
});
test('should work with an object for `collection`', function() {
var actual = _.groupBy({ 'a': 1.3, 'b': 2.1, 'c': 2.4 }, function(num) {
return Math.floor(num);
@@ -617,7 +617,7 @@
deepEqual(actual, [3, 1, 2]);
});
test('should work with an object for `collection`', function() {
var actual = _.sortBy({ 'a': 1, 'b': 2, 'c': 3 }, function(num) {
return Math.sin(num);