diff --git a/lodash.js b/lodash.js index b3e05e251..eb1112158 100644 --- a/lodash.js +++ b/lodash.js @@ -14130,8 +14130,8 @@ * _.map(objects, _.method('a.b.c')); * // => [2, 1] * - * _.invokeMap(_.sortBy(objects, _.method(['a', 'b', 'c'])), 'a.b.c'); - * // => [1, 2] + * _.map(objects, _.method(['a', 'b', 'c'])); + * // => [2, 1] */ var method = rest(function(path, args) { return function(object) {