Browse Source

verify Fixed express' json test

Mike Smith 11 years ago
parent
commit
b2b43445d8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      express/app.js

+ 1 - 1
express/app.js

@@ -61,7 +61,7 @@ if (cluster.isMaster) {
   // Routes
 
   app.get('/json', function(req, res) {
-    res.send({ message: 'Hello World!' })
+    res.send({ message: 'Hello, World!' })
   });
   
   app.get('/mongoose', function(req, res) {