Replace non-ASCII hyphen with ASCII version
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1157551 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
29b73279bc
commit
11425c7892
|
@ -337,7 +337,7 @@ public class StringEscapeUtilsTest {
|
||||||
* Supplementary characters are those Unicode characters that have code points higher than the characters in
|
* Supplementary characters are those Unicode characters that have code points higher than the characters in
|
||||||
* the Basic Multilingual Plane (BMP). In UTF-16 a supplementary character is encoded using two 16-bit surrogate code points from the
|
* the Basic Multilingual Plane (BMP). In UTF-16 a supplementary character is encoded using two 16-bit surrogate code points from the
|
||||||
* BMP. Because of this, some people think that supplementary characters need to be represented using two escapes, but this is incorrect
|
* BMP. Because of this, some people think that supplementary characters need to be represented using two escapes, but this is incorrect
|
||||||
* – you must use the single, code point value for that character. For example, use 𣎴 rather than ��.
|
* - you must use the single, code point value for that character. For example, use 𣎴 rather than ��.
|
||||||
* </blockquote>
|
* </blockquote>
|
||||||
* @see <a href="http://www.w3.org/International/questions/qa-escapes">Using character escapes in markup and CSS</a>
|
* @see <a href="http://www.w3.org/International/questions/qa-escapes">Using character escapes in markup and CSS</a>
|
||||||
* @see <a href="https://issues.apache.org/jira/browse/LANG-728">LANG-728</a>
|
* @see <a href="https://issues.apache.org/jira/browse/LANG-728">LANG-728</a>
|
||||||
|
|
Loading…
Reference in New Issue