From 9ef833588164a026078136d0ea2f60076839f4fd Mon Sep 17 00:00:00 2001 From: Andrea Vacondio Date: Tue, 25 Nov 2014 11:43:03 +0100 Subject: [PATCH] Fix broken link to the MVC section of the Spring reference docs Closes gh-1998 --- spring-boot-docs/src/main/asciidoc/getting-started.adoc | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/spring-boot-docs/src/main/asciidoc/getting-started.adoc b/spring-boot-docs/src/main/asciidoc/getting-started.adoc index d61e327ccd..ad49b10651 100644 --- a/spring-boot-docs/src/main/asciidoc/getting-started.adoc +++ b/spring-boot-docs/src/main/asciidoc/getting-started.adoc @@ -566,10 +566,9 @@ 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 -annotations (they are not specific to Spring Boot). See the -<{spring-reference}/#mvc>[MVC section] in the Spring -Reference Documentation for more details. +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.