diff --git a/1-js/02-first-steps/15-function-expressions-arrows/article.md b/1-js/02-first-steps/15-function-expressions-arrows/article.md index f558ca01..a7a840d0 100644 --- a/1-js/02-first-steps/15-function-expressions-arrows/article.md +++ b/1-js/02-first-steps/15-function-expressions-arrows/article.md @@ -403,9 +403,9 @@ If we have only one argument, then parentheses can be omitted, making that even ```js run // same as -// let double = function(n) { return n*2 } +// let double = function(n) { return n * 2 } *!* -let double = n => n*2; +let double = n => n * 2; */!* alert( double(3) ); // 6