Skip to content

Commit cd9b58b

Browse files
committed
Fix typo in reference
Issue: SPR-13043
1 parent ae35e84 commit cd9b58b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/asciidoc/index.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32906,7 +32906,7 @@ For example given:
3290632906
[subs="verbatim,quotes"]
3290732907
----
3290832908
@RequestMapping("/people/{id}/addresses")
32909-
public class MyController {
32909+
public class PersonAddressController {
3291032910

3291132911
@RequestMapping("/{country}")
3291232912
public HttpEntity getAddress(@PathVariable String country) { ... }
@@ -32920,7 +32920,7 @@ The following JSP code can prepare a link:
3292032920
----
3292132921
<%@ taglib uri="http://www.springframework.org/tags" prefix="s" %>
3292232922
...
32923-
<a href="${s:mvcUrl(''PC#getPerson'').arg(0,''US'').buildAndExpand(''123'')}">Get Person</a>
32923+
<a href="${s:mvcUrl(''PAC#getAddress'').arg(0,''US'').buildAndExpand(''123'')}">Get Address</a>
3292432924
----
3292532925

3292632926

0 commit comments

Comments
 (0)