From 2b749830ffce51d3e287aa81779dd5b2fca714d7 Mon Sep 17 00:00:00 2001 From: Dmitry Pechnikov Date: Mon, 17 Sep 2018 12:20:48 +0300 Subject: [PATCH] Fix Arrow functions note syntax typo Missing end quotes make Spread operator section render into the note. --- .../02-rest-parameters-spread-operator/article.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/1-js/06-advanced-functions/02-rest-parameters-spread-operator/article.md b/1-js/06-advanced-functions/02-rest-parameters-spread-operator/article.md index c2ca8168..409c6dc1 100644 --- a/1-js/06-advanced-functions/02-rest-parameters-spread-operator/article.md +++ b/1-js/06-advanced-functions/02-rest-parameters-spread-operator/article.md @@ -119,6 +119,8 @@ function f() { f(1); // 1 ``` +```` + As we remember, arrow functions don't have their own `this`. Now we know they don't have the special `arguments` object either. ## Spread operator [#spread-operator]