From 769ffe28345348bbe6b3fb7f361dd4814d61e2ff Mon Sep 17 00:00:00 2001 From: bjornerik Date: Wed, 28 May 2014 00:12:47 +0200 Subject: [PATCH] Missing space destroys formatting in doc --- spring-boot-docs/src/main/asciidoc/getting-started.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-docs/src/main/asciidoc/getting-started.adoc b/spring-boot-docs/src/main/asciidoc/getting-started.adoc index 6189fdc2514..b64c0458f79 100644 --- a/spring-boot-docs/src/main/asciidoc/getting-started.adoc +++ b/spring-boot-docs/src/main/asciidoc/getting-started.adoc @@ -550,7 +550,7 @@ that any HTTP request with the path "`/`" should be mapped to the `home` method. `@RestController` annotation tells Spring to render the resulting string directly back to the caller. -TIP: The `@RestController` and`@RequestMapping` annotations are Spring MVC +TIP: The `@RestController` and `@RequestMapping` annotations are Spring MVC annotations (they are not specific to Spring Boot). See the <{spring-reference}/#mvc>[MVC section] in the Spring Reference Documentation for more details.