Javadoc examples looked better wrapped in {@code} tags.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1630076 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Duncan Jones 2014-10-08 11:49:54 +00:00
parent 4477ae6952
commit 0648a3096b
1 changed files with 4 additions and 4 deletions

View File

@ -611,12 +611,12 @@ public class StringEscapeUtils {
* containing the actual Unicode characters corresponding to the
* escapes. Supports HTML 4.0 entities.</p>
*
* <p>For example, the string "&amp;lt;Fran&amp;ccedil;ais&amp;gt;"
* will become "&lt;Fran&ccedil;ais&gt;"</p>
* <p>For example, the string {@code "&lt;Fran&ccedil;ais&gt;"}
* will become {@code "<Français>"}</p>
*
* <p>If an entity is unrecognized, it is left alone, and inserted
* verbatim into the result string. e.g. "&amp;gt;&amp;zzzz;x" will
* become "&gt;&amp;zzzz;x".</p>
* verbatim into the result string. e.g. {@code "&gt;&zzzz;x"} will
* become {@code ">&zzzz;x"}.</p>
*
* @param input the {@code String} to unescape, may be null
* @return a new unescaped {@code String}, {@code null} if null string input