Browse Source

verify Fixed ringojs' json test

Mike Smith 11 years ago
parent
commit
05311697b9
1 changed files with 1 additions and 1 deletions
  1. 1 1
      ringojs/ringo-main.js

+ 1 - 1
ringojs/ringo-main.js

@@ -15,7 +15,7 @@ var fortuneTemplate = require('fs').read(module.resolve('./templates/fortune.mus
 exports.app = function(req) {
    var path = req.pathInfo;
    if (path === '/json') {
-      var helloObject = {message: "Hello, world"};
+      var helloObject = {message: "Hello, World!"};
       // JSON Response Test
       return {
          status: 200,