diff --git a/concepts/closures/introduction.md b/concepts/closures/introduction.md index d443933587..9d8409cb42 100644 --- a/concepts/closures/introduction.md +++ b/concepts/closures/introduction.md @@ -18,7 +18,7 @@ twoDozen; // => Uncaught ReferenceError: twoDozen is not defined ``` -Except for braces `{}`, functions (and classes) als create new scopes, which can _enclose_ values: +Except for braces `{}`, functions (and classes) also create new scopes, which can _enclose_ values: ```javascript const dozen = 12;