Skip to content

Commit d684a53

Browse files
authored
Merge pull request #202 from usernamehw/patch-1
Fix spaces around operator
2 parents 2e63c4f + 6085d98 commit d684a53

File tree

1 file changed

+2
-2
lines changed
  • 1-js/02-first-steps/15-function-expressions-arrows

1 file changed

+2
-2
lines changed

1-js/02-first-steps/15-function-expressions-arrows/article.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -403,9 +403,9 @@ If we have only one argument, then parentheses can be omitted, making that even
403403

404404
```js run
405405
// same as
406-
// let double = function(n) { return n*2 }
406+
// let double = function(n) { return n * 2 }
407407
*!*
408-
let double = n => n*2;
408+
let double = n => n * 2;
409409
*/!*
410410

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

0 commit comments

Comments
 (0)