diff --git a/lodash.js b/lodash.js index f97eefd63..958a401b4 100644 --- a/lodash.js +++ b/lodash.js @@ -7489,8 +7489,8 @@ * return _.toArray(arguments); * }); * - * flipped('a', 'b', 'c') - * // => ['c', 'b', 'a'] + * flipped('a', 'b', 'c', 'd'); + * // => ['d', 'c', 'b', 'a'] */ function flip(func) { return createWrapper(func, FLIP_FLAG); diff --git a/test/test.js b/test/test.js index 496e4a772..a9c052627 100644 --- a/test/test.js +++ b/test/test.js @@ -4674,7 +4674,7 @@ assert.expect(1); var flipped = _.flip(fn); - assert.deepEqual(flipped('a', 'b', 'c'), ['c', 'b', 'a']); + assert.deepEqual(flipped('a', 'b', 'c', 'd'), ['d', 'c', 'b', 'a']); }); }());