Skip to content

Commit

Permalink
Merge pull request #43 from skkeeper/patch-1
Browse files Browse the repository at this point in the history
Fix typo on the curry test.js file
  • Loading branch information
kolodny committed Dec 22, 2015
2 parents 47103a0 + a755ad8 commit bc396c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion curry/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ describe('curry', function() {
assert.equal(add(1, 2)(3), 6);
});

it('curries the function until the arguments needed are given mutliple times', function() {
it('curries the function until the arguments needed are given multiple times', function() {
var add = curry(function(a, b, c) {
return a + b + c;
});
Expand Down

0 comments on commit bc396c6

Please sign in to comment.