Skip to content

Commit 5619ee5

Browse files
raduopritaajpiano
authored andcommitted
Add semicolon after Named function expression in JavaScript 101 Functions article. Fixes jquery#325.
1 parent 21df7f7 commit 5619ee5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

page/javascript-101/functions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ function foo() {
2121
// Named function expression.
2222
var foo = function() {
2323
/* do something */
24-
}
24+
};
2525
```
2626

2727
## Using Functions

0 commit comments

Comments
 (0)