From 11425c7892db46c01edcb78929c283ff21288f5a Mon Sep 17 00:00:00 2001 From: Sebastian Bazley Date: Sun, 14 Aug 2011 15:35:16 +0000 Subject: [PATCH] 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 --- .../java/org/apache/commons/lang3/StringEscapeUtilsTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/org/apache/commons/lang3/StringEscapeUtilsTest.java b/src/test/java/org/apache/commons/lang3/StringEscapeUtilsTest.java index 1182f89bd..ab351d90d 100644 --- a/src/test/java/org/apache/commons/lang3/StringEscapeUtilsTest.java +++ b/src/test/java/org/apache/commons/lang3/StringEscapeUtilsTest.java @@ -337,7 +337,7 @@ public class StringEscapeUtilsTest { * 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 * 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 ��. * * @see Using character escapes in markup and CSS * @see LANG-728