From 6bb64bd96fbb93c638f85fe64d828cc7bda22d7f Mon Sep 17 00:00:00 2001 From: Syed Shahbaz Ahmed Date: Mon, 24 Apr 2017 16:13:18 +0200 Subject: [PATCH] Update article.md --- 1-js/06-advanced-functions/12-arrow-functions/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/06-advanced-functions/12-arrow-functions/article.md b/1-js/06-advanced-functions/12-arrow-functions/article.md index 792dd926..0d8b2426 100644 --- a/1-js/06-advanced-functions/12-arrow-functions/article.md +++ b/1-js/06-advanced-functions/12-arrow-functions/article.md @@ -14,7 +14,7 @@ For instance: - `setTimeout(func)` -- `func` is executed by the built-in scheduler. - ...there are more. -It's very in the spirit of JavaScript to create a function and pass it somewhere. +It's in the very spirit of JavaScript to create a function and pass it somewhere. And in such functions we usually don't want to leave the current context.