Fix syntax in sample

This commit is contained in:
Dave Syer
2014-09-30 11:41:20 +01:00
parent 9f2955058d
commit be1130ff69

View File

@@ -69,8 +69,8 @@ server on `http://localhost:8888` (the default value of
public class Application {
@RequestMapping("/")
String home() {
"Hello World"
public String home() {
return "Hello World";
}
public static void main(String[] args) {