Skip to content

Commit 3c83714

Browse files
author
Jessica Martin
committed
Add missing semicolon to express route handler
1 parent 9e9765a commit 3c83714

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ app.set('views', __dirname + '/views');
1010
app.set('view engine', 'ejs');
1111

1212
app.get('/', function(request, response) {
13-
response.render('pages/index')
13+
response.render('pages/index');
1414
});
1515

1616
app.listen(app.get('port'), function() {

0 commit comments

Comments
 (0)