From a755ad8bd33ae2582ecee3f64b081212966e68cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A1bio=20Andr=C3=A9=20Damas?= Date: Tue, 22 Dec 2015 12:09:37 +0000 Subject: [PATCH] Fix typo on the curry test.js file --- curry/test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curry/test.js b/curry/test.js index 31301ff..dabe7b2 100644 --- a/curry/test.js +++ b/curry/test.js @@ -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; });