Browse Source

verify Fixed grails' json test

Mike Smith 11 years ago
parent
commit
2879446e97
1 changed files with 1 additions and 1 deletions
  1. 1 1
      grails/hello/grails-app/controllers/hello/HelloController.groovy

+ 1 - 1
grails/hello/grails-app/controllers/hello/HelloController.groovy

@@ -22,7 +22,7 @@ class HelloController {
     // Test type 1: JSON serialization
     def json() {
         def msg = [
-            message: "Hello, world"
+            message: "Hello, World!"
         ]
         render msg as JSON
     }