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:
parent
4477ae6952
commit
0648a3096b
|
@ -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 "&lt;Fran&ccedil;ais&gt;"
|
||||
* will become "<Français>"</p>
|
||||
* <p>For example, the string {@code "<Français>"}
|
||||
* 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. "&gt;&zzzz;x" will
|
||||
* become ">&zzzz;x".</p>
|
||||
* verbatim into the result string. e.g. {@code ">&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
|
||||
|
|
Loading…
Reference in New Issue