From 3b4f96c617ed8a9d0a30acc8e47ed5663110dcb1 Mon Sep 17 00:00:00 2001 From: Alexander Date: Mon, 30 Oct 2017 22:39:26 +0300 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 dcae22a4..92a88426 100644 --- a/1-js/06-advanced-functions/12-arrow-functions/article.md +++ b/1-js/06-advanced-functions/12-arrow-functions/article.md @@ -125,4 +125,4 @@ Arrow functions: - Can't be called with `new`. - (They also don't have `super`, but we didn't study it. Will be in the chapter ). -That's because they are meant for short pieces of code that does not have their own "context", but rather works in the current one. And they really shine in that use case. +That's because they are meant for short pieces of code that do not have their own "context", but rather works in the current one. And they really shine in that use case.