Fix doc example in _.partition. [ci skip]

This commit is contained in:
h7lin
2015-03-03 11:59:00 +08:00
committed by jdalton
parent ba9bd3bc76
commit 9a8345d4f9

View File

@@ -6489,7 +6489,7 @@
* _.partition([1.2, 2.3, 3.4], function(n) {
* return this.floor(n) % 2;
* }, Math);
* // => [[1, 3], [2]]
* // => [[1.2, 3.4], [2.3]]
*
* var users = [
* { 'user': 'barney', 'age': 36, 'active': false },