Skip to content

Commit 76d249d

Browse files
authored
Update app.js
1 parent 43e4543 commit 76d249d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ var app = express();
33

44
app.get('/', function(req, res){
55
res.writeHead(200, { 'Content-Type': 'application/json' });
6-
res.write(JSON.stringify({"cities" : ["San Francisco", "Amsterdam", "Berlin", "New York", "Tokyo"]}));
6+
res.write(JSON.stringify({cities : ["San Francisco", "Amsterdam", "Berlin", "New York", "Tokyo"]}));
77
res.end();
88
});
99

0 commit comments

Comments
 (0)