Skip to content

Commit

Permalink
docs(dropArgs): make example more understandable
Browse files Browse the repository at this point in the history
  • Loading branch information
char0n committed Sep 8, 2018
1 parent 197b3f1 commit d4c2add
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dropArgs.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import { nAry } from 'ramda';
*
* const fn = (a = 1, b = 2) => a + b;
*
* RA.dropArgs(fn)(3, 4); //=> 3
* RA.dropArgs(fn)('ignore1', 'ignore2'); //=> 3
*/
const dropArgs = nAry(0);

Expand Down

0 comments on commit d4c2add

Please sign in to comment.