]> granicus.if.org Git - icu/commitdiff
ICU-9097 minor API docs fixes
authorMarkus Scherer <markus.icu@gmail.com>
Wed, 28 Feb 2018 23:46:22 +0000 (23:46 +0000)
committerMarkus Scherer <markus.icu@gmail.com>
Wed, 28 Feb 2018 23:46:22 +0000 (23:46 +0000)
X-SVN-Rev: 41021

icu4c/source/common/unicode/uchar.h
icu4j/main/classes/core/src/com/ibm/icu/lang/UCharacter.java

index 3613374d9a43a5df7e8f302db61f3fb281e94e6c..4b72ecfc26bf9af0453f15e1f4d77d949591b142 100644 (file)
@@ -112,11 +112,11 @@ U_CDECL_BEGIN
  * Comparison:
  * - u_isUWhiteSpace=UCHAR_WHITE_SPACE: Unicode White_Space property;
  *       most of general categories "Z" (separators) + most whitespace ISO controls
- *       (including no-break spaces, but excluding IS1..IS4 and ZWSP)
+ *       (including no-break spaces, but excluding IS1..IS4)
  * - u_isWhitespace: Java isWhitespace; Z + whitespace ISO controls but excluding no-break spaces
  * - u_isJavaSpaceChar: Java isSpaceChar; just Z (including no-break spaces)
  * - u_isspace: Z + whitespace ISO controls (including no-break spaces)
- * - u_isblank: "horizontal spaces" = TAB + Zs - ZWSP
+ * - u_isblank: "horizontal spaces" = TAB + Zs
  */
 
 /**
@@ -2702,8 +2702,7 @@ u_isgraph(UChar32 c);
  *
  * same as
  *
- * TRUE for U+0009 (TAB) and characters with general category "Zs" (space separators)
- * except Zero Width Space (ZWSP, U+200B).
+ * TRUE for U+0009 (TAB) and characters with general category "Zs" (space separators).
  *
  * Note: There are several ICU whitespace functions; please see the uchar.h
  * file documentation for a detailed comparison.
index 9580c9fe10f1aa80cf96ed3c7caa391a338363e0..0adc58a64fa69c4b43a981ec41a8e488b7930209 100644 (file)
@@ -146,7 +146,7 @@ import com.ibm.icu.util.VersionInfo;
  * Comparison:<ul>
  * <li> isUWhiteSpace=UCHAR_WHITE_SPACE: Unicode White_Space property;
  *       most of general categories "Z" (separators) + most whitespace ISO controls
- *       (including no-break spaces, but excluding IS1..IS4 and ZWSP)
+ *       (including no-break spaces, but excluding IS1..IS4)
  * <li> isWhitespace: Java isWhitespace; Z + whitespace ISO controls but excluding no-break spaces
  * <li> isSpaceChar: just Z (including no-break spaces)</ul>
  *