Fixing javadoc

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1148160 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Henri Yandell 2011-07-19 04:54:58 +00:00
parent 16c1e9e423
commit 96156936d8
1 changed files with 1 additions and 1 deletions

View File

@ -496,7 +496,7 @@ public static final String unescapeHtml3(String input) {
* <p>Note that unicode characters greater than 0x7f are as of 3.0, no longer * <p>Note that unicode characters greater than 0x7f are as of 3.0, no longer
* escaped. If you still wish this functionality, you can achieve it * escaped. If you still wish this functionality, you can achieve it
* via the following: * via the following:
* {@code StringEscapeUtils.ESCAPE_XML.with( new UnicodeEscaper(Range.between(0x7f, Integer.MAX_VALUE)) );}</p> * {@code StringEscapeUtils.ESCAPE_XML.with( UnicodeEscaper.between(0x7f, Integer.MAX_VALUE) );}</p>
* *
* @param input the {@code String} to escape, may be null * @param input the {@code String} to escape, may be null
* @return a new escaped {@code String}, {@code null} if null string input * @return a new escaped {@code String}, {@code null} if null string input