Browse Source

verify Fixed ringojs-convenient's json test

Mike Smith 11 years ago
parent
commit
c31ef43de0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      ringojs-convenient/app/views.js

+ 1 - 1
ringojs-convenient/app/views.js

@@ -12,7 +12,7 @@ var app = exports.app = Application();
 app.configure("params", "route");
 app.configure("params", "route");
 
 
 app.get('/json', function() {
 app.get('/json', function() {
-   var helloObject = {message: "Hello, world"};
+   var helloObject = {message: "Hello, World!"};
    return response.json(helloObject);
    return response.json(helloObject);
 });
 });