From bfbd0b3957b760700bb12fa0d892cef078f83229 Mon Sep 17 00:00:00 2001 From: Ya-Han CHANG Date: Fri, 15 Aug 2025 11:48:16 +0800 Subject: [PATCH] fix: line 21: correct minor typo (als -> also) --- concepts/closures/introduction.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;