Browse Source

verify Fixed tapestry's json test

Mike Smith 11 years ago
parent
commit
ee55cc5ae7
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tapestry/hello/src/main/java/hello/pages/HelloJSON.java

+ 1 - 1
tapestry/hello/src/main/java/hello/pages/HelloJSON.java

@@ -21,7 +21,7 @@ public class HelloJSON
 
   StreamResponse onActivate() {
     Map<String, String> data = new HashMap<String, String>();
-    data.put("message", "Hello, world");
+    data.put("message", "Hello, World!");
     
     String response = "";
     try