From be1130ff69673e606abe94c1f3442f0a4e0f3706 Mon Sep 17 00:00:00 2001 From: Dave Syer Date: Tue, 30 Sep 2014 11:41:20 +0100 Subject: [PATCH] Fix syntax in sample --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index a8f9d302..392d9b5e 100644 --- a/index.html +++ b/index.html @@ -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) {