From 8711f8f57ea2ec07674cb119b540bdad9926f83b Mon Sep 17 00:00:00 2001 From: Scott Frederick Date: Fri, 12 Jul 2013 11:26:02 -0500 Subject: [PATCH] Fixed URL for installer and code formatting. --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 0bd18616ba..7a7ad0ec35 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ You need to build from source for now, but when it's done instructions will look 2) Get Spring - $ curl -s spring.cfapps.io | bash + $ curl -s spring.cfapps.io/installer | bash or use the Windows installer @@ -72,13 +72,13 @@ calls `SpringApplication` and add `@EnableAutoConfiguration`: @EnableAutoConfiguration public class SampleController { - @RequestMapping("/") - @ResponseBody - String home() { - return "Hello World!" - } + @RequestMapping("/") + @ResponseBody + String home() { + return "Hello World!" + } - public static void main(String[] args) throws Exception { + public static void main(String[] args) throws Exception { SpringApplication.run(SampleController.class, args); }