From 6732cef816bf1ea1a15e31e8aafb1f1eca679e8f Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Sat, 2 Nov 2019 21:39:45 +0300 Subject: [PATCH] fix --- 1-js/06-advanced-functions/10-bind/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/06-advanced-functions/10-bind/article.md b/1-js/06-advanced-functions/10-bind/article.md index 4b8e0d4a..16a50942 100644 --- a/1-js/06-advanced-functions/10-bind/article.md +++ b/1-js/06-advanced-functions/10-bind/article.md @@ -279,7 +279,7 @@ What if we'd like to fix some arguments, but not the context `this`? For example The native `bind` does not allow that. We can't just omit the context and jump to arguments. -Fortunately, a wrapper function `partial` for binding only arguments can be easily implemented. +Fortunately, a helper function `partial` for binding only arguments can be easily implemented. Like this: