From d686f615f6d207ef9ad554cf7a9850cebd977b10 Mon Sep 17 00:00:00 2001 From: Rossen Stoyanchev Date: Mon, 18 May 2015 15:24:21 -0400 Subject: [PATCH] Fix typo in reference Issue: SPR-13043 --- src/asciidoc/web-mvc.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/asciidoc/web-mvc.adoc b/src/asciidoc/web-mvc.adoc index 89110d7fe6..6f38f56069 100644 --- a/src/asciidoc/web-mvc.adoc +++ b/src/asciidoc/web-mvc.adoc @@ -3176,7 +3176,7 @@ For example given: [subs="verbatim,quotes"] ---- @RequestMapping("/people/{id}/addresses") - public class MyController { + public class PersonAddressController { @RequestMapping("/{country}") public HttpEntity getAddress(@PathVariable String country) { ... } @@ -3190,7 +3190,7 @@ You can prepare a link from a JSP as follows: ---- <%@ taglib uri="http://www.springframework.org/tags" prefix="s" %> ... -Get Person +Get Address ---- The above example relies on the `mvcUrl` JSP function declared in the Spring tag library