Skip to content

Commit 6085d98

Browse files
authored
Fix spaces around operator
1 parent f192741 commit 6085d98

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)