Fix typo in reference

Issue: SPR-13043
This commit is contained in:
Rossen Stoyanchev
2015-05-18 15:26:25 -04:00
parent ae35e84c1e
commit cd9b58b0ab

View File

@@ -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" %>
...
<a href="${s:mvcUrl(''PC#getPerson'').arg(0,''US'').buildAndExpand(''123'')}">Get Person</a>
<a href="${s:mvcUrl(''PAC#getAddress'').arg(0,''US'').buildAndExpand(''123'')}">Get Address</a>
----