diff --git a/JavaScript/5-timer-curry.js b/JavaScript/5-timer-curry.js index 9e6f381..e3ab011 100644 --- a/JavaScript/5-timer-curry.js +++ b/JavaScript/5-timer-curry.js @@ -8,7 +8,7 @@ const curry = (fn, ...par) => { }; const fn = () => { - console.log('Callback from from timer'); + console.log('Callback from timer'); }; const timeout = (interval, fn) => setTimeout(fn, interval);