Skip to content

Commit 79ec141

Browse files
authored
Merge pull request #2054 from front42/patch-2
fix: correct spelling in arrow functions basics article.md ru
2 parents 2485605 + 29da525 commit 79ec141

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)