From 29da525b8b4def52c924766552725eb64e77e86b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C2=A1ke?= <77801554+front42@users.noreply.github.com> Date: Tue, 16 Sep 2025 21:46:01 +0300 Subject: [PATCH] fix: correct spelling in arrow functions basics article.md --- 1-js/02-first-steps/17-arrow-functions-basics/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/02-first-steps/17-arrow-functions-basics/article.md b/1-js/02-first-steps/17-arrow-functions-basics/article.md index c41aa01f4d..25bc971ce9 100644 --- a/1-js/02-first-steps/17-arrow-functions-basics/article.md +++ b/1-js/02-first-steps/17-arrow-functions-basics/article.md @@ -41,7 +41,7 @@ alert( sum(1, 2) ); // 3 ```js run *!* let double = n => n * 2; - // примерно тоже что и: let double = function(n) { return n * 2 } + // примерно то же, что и: let double = function(n) { return n * 2 } */!* alert( double(3) ); // 6