Skip to content

Commit

Permalink
typo in curried function names
Browse files Browse the repository at this point in the history
  • Loading branch information
pocesar committed Apr 1, 2014
1 parent c336581 commit 29963bd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "better-curry",
"main": "index.js",
"version": "1.1.2",
"version": "1.1.3",
"authors": [
"Paulo Cesar <email@pocesar.e4ward.com>"
],
Expand Down
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@
);
};
case 9:
return function eightArgs(arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9){
return function nineArgs(arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9){
return noContext ?
fn(
instead ? instead(arg1, 0) : arg1,
Expand All @@ -202,7 +202,7 @@
);
};
case 10:
return function eightArgs(arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10){
return function tenArgs(arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10){
return noContext ?
fn(
instead ? instead(arg1, 0) : arg1,
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "better-curry",
"version": "1.1.2",
"version": "1.1.3",
"description": "Forget Function.bind and func.apply(context, arguments), performance matters! For a better curry!",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit 29963bd

Please sign in to comment.