diff --git a/lodash.src.js b/lodash.src.js index 7e735874d..1d0edab40 100644 --- a/lodash.src.js +++ b/lodash.src.js @@ -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 },