Skip to content

Commit 4b12746

Browse files
committed
Merge pull request reactjs#10 from victorleungtw/master
Add missing semicolon
2 parents 3d89511 + 896efce commit 4b12746

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ var express = require('express');
1616
var bodyParser = require('body-parser');
1717
var app = express();
1818

19-
var comments = JSON.parse(fs.readFileSync('_comments.json'))
19+
var comments = JSON.parse(fs.readFileSync('_comments.json'));
2020

2121
app.use('/', express.static(path.join(__dirname, 'public')));
2222
app.use(bodyParser.json());

0 commit comments

Comments
 (0)