Skip to content

Commit 6be46c1

Browse files
authored
Merge pull request #581 from Mrchazaaa/patch-1
placed a semicolon after this function expression
2 parents e851733 + 14b2742 commit 6be46c1

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ In other words, it's roughly the same as:
375375
```js
376376
let func = function(arg1, arg2, ...argN) {
377377
return expression;
378-
}
378+
};
379379
```
380380

381381
...But much more concise.

0 commit comments

Comments
 (0)