From dacbebdcff2fe65f5ad66879585d27746afeecb7 Mon Sep 17 00:00:00 2001 From: Ryan Baxter Date: Fri, 15 Jul 2016 10:53:59 -0400 Subject: [PATCH] Added missing return keyword --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index ade728f5..cd170e2a 100644 --- a/index.html +++ b/index.html @@ -68,7 +68,7 @@ public class Application { @RequestMapping("/") public String home() { - "Hello " + name; + return "Hello " + name; } public static void main(String[] args) {