diff --git a/lodash.js b/lodash.js index 850aef4ef..8fbb44301 100644 --- a/lodash.js +++ b/lodash.js @@ -5021,8 +5021,8 @@ * // => [3.1, 1.3] * * // using the `_.property` callback shorthand - * _.differenceBy([{ 'x': 1 }], [{ 'x': 2 }, { 'x': 1 }], 'x'); - * // => [{ 'x': 1 }, { 'x': 2 }] + * _.differenceBy([{ 'x': 2 }, { 'x': 1 }], [{ 'x': 1 }], 'x'); + * // => [{ 'x': 2 }] */ var differenceBy = restParam(function(array, values) { var iteratee = last(values);