From 35ef26811f0ce913dd4c279080e8db13c18523da Mon Sep 17 00:00:00 2001 From: Random-Human213 Date: Sat, 6 Jun 2026 15:14:12 +0400 Subject: [PATCH] Small typo --- 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 9d8409cb42..a09ba8e78f 100644 --- a/concepts/closures/introduction.md +++ b/concepts/closures/introduction.md @@ -105,7 +105,7 @@ const mySecondCounter = makeCounter(); mySecondCounter(); // => 1 -// It is not affect the first counter. +// It does not affect the first counter. myFirstCounter(); // => 3