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.