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 201a1ffe..b90ed2ef 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 @@ -375,7 +375,7 @@ In other words, it's roughly the same as: ```js let func = function(arg1, arg2, ...argN) { return expression; -} +}; ``` ...But much more concise.