From 940535897c0a36a091b886322d8fee6c7339d1dc Mon Sep 17 00:00:00 2001 From: Alexey Pyltsyn Date: Fri, 3 May 2019 14:38:31 +0300 Subject: [PATCH] 1-js/06-advanced-functions/10-bind: fix markup --- 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 aed139c1..06e2000f 100644 --- a/1-js/06-advanced-functions/10-bind/article.md +++ b/1-js/06-advanced-functions/10-bind/article.md @@ -100,7 +100,7 @@ The basic syntax is: ```js // more complex syntax will be little later let boundFunc = func.bind(context); -```` +``` The result of `func.bind(context)` is a special function-like "exotic object", that is callable as function and transparently passes the call to `func` setting `this=context`.