From cd9b58b0ab89f7d4e24a9010ca885c0810188fa9 Mon Sep 17 00:00:00 2001 From: Rossen Stoyanchev Date: Mon, 18 May 2015 15:26:25 -0400 Subject: [PATCH] Fix typo in reference Issue: SPR-13043 --- src/asciidoc/index.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/asciidoc/index.adoc b/src/asciidoc/index.adoc index 4c8b224faaf..55f1e074238 100644 --- a/src/asciidoc/index.adoc +++ b/src/asciidoc/index.adoc @@ -32906,7 +32906,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) { ... } @@ -32920,7 +32920,7 @@ The following JSP code can prepare a link: ---- <%@ taglib uri="http://www.springframework.org/tags" prefix="s" %> ... -Get Person +Get Address ----