Browse Source

verify Fixed rack's json test

Mike Smith 11 years ago
parent
commit
234754a36a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      rack/config.ru

+ 1 - 1
rack/config.ru

@@ -11,7 +11,7 @@ app = lambda do |env|
     [
       200,
       { 'Content-Type' => 'application/json' },
-      [{:message => "Hello World!"}.to_json]
+      [{:message => "Hello, World!"}.to_json]
     ]
   end
 end