Skip to content

Commit 29da525

Browse files
authored
fix: correct spelling in arrow functions basics article.md
1 parent 2485605 commit 29da525

File tree

1 file changed

+1
-1
lines changed
  • 1-js/02-first-steps/17-arrow-functions-basics

1 file changed

+1
-1
lines changed

1-js/02-first-steps/17-arrow-functions-basics/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ alert( sum(1, 2) ); // 3
4141
```js run
4242
*!*
4343
let double = n => n * 2;
44-
// примерно тоже что и: let double = function(n) { return n * 2 }
44+
// примерно то же, что и: let double = function(n) { return n * 2 }
4545
*/!*
4646

4747
alert( double(3) ); // 6

0 commit comments

Comments
 (0)