Ensure single quotes appear in documentation sample

Issue: SPR-12186
This commit is contained in:
Rossen Stoyanchev 2014-09-15 15:38:44 -04:00
parent 70b5f319a9
commit b1e9577680
1 changed files with 1 additions and 1 deletions

View File

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