From f426fd6113f786391b291f6d709239e7ca724443 Mon Sep 17 00:00:00 2001 From: Brent Guffens Date: Wed, 31 Jan 2018 13:21:23 +0100 Subject: [PATCH] Wording --- 1-js/06-advanced-functions/11-currying-partials/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/06-advanced-functions/11-currying-partials/article.md b/1-js/06-advanced-functions/11-currying-partials/article.md index 6e7b78e8..9484bf69 100644 --- a/1-js/06-advanced-functions/11-currying-partials/article.md +++ b/1-js/06-advanced-functions/11-currying-partials/article.md @@ -5,7 +5,7 @@ libs: # Currying and partials -Till now we were only talking about binding `this`. Now let's make a step further. +Until now we have only been talking about binding `this`. Let's take it a step further. We can bind not only `this`, but also arguments. That's rarely done, but sometimes can be handy.