mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-08 06:53:45 +00:00
ICU-2657 fix some comments about Java isSpaceChar
X-SVN-Rev: 11555
This commit is contained in:
parent
d94419fc1a
commit
f07f7270f2
1 changed files with 3 additions and 3 deletions
|
@ -1615,7 +1615,7 @@ u_isdefined(UChar32 c);
|
|||
* general categories "Z" (separators) + whitespace ISO controls
|
||||
* (including no-break spaces)
|
||||
* - u_isWhitespace: Java isWhitespace; Z + whitespace ISO controls but excluding no-break spaces
|
||||
* - u_isJavaSpaceChar: Java isSpace; just Z (including no-break spaces)
|
||||
* - u_isJavaSpaceChar: Java isSpaceChar; just Z (including no-break spaces)
|
||||
* - u_isspace: Z + whitespace ISO controls (including no-break spaces)
|
||||
*
|
||||
* @param c the character to be tested
|
||||
|
@ -1641,7 +1641,7 @@ u_isspace(UChar32 c);
|
|||
* general categories "Z" (separators) + whitespace ISO controls
|
||||
* (including no-break spaces)
|
||||
* - u_isWhitespace: Java isWhitespace; Z + whitespace ISO controls but excluding no-break spaces
|
||||
* - u_isJavaSpaceChar: Java isSpace; just Z (including no-break spaces)
|
||||
* - u_isJavaSpaceChar: Java isSpaceChar; just Z (including no-break spaces)
|
||||
* - u_isspace: Z + whitespace ISO controls (including no-break spaces)
|
||||
*
|
||||
* @param c the code point to be tested
|
||||
|
@ -1680,7 +1680,7 @@ u_isJavaSpaceChar(UChar32 c);
|
|||
* general categories "Z" (separators) + whitespace ISO controls
|
||||
* (including no-break spaces)
|
||||
* - u_isWhitespace: Java isWhitespace; Z + whitespace ISO controls but excluding no-break spaces
|
||||
* - u_isJavaSpaceChar: Java isSpace; just Z (including no-break spaces)
|
||||
* - u_isJavaSpaceChar: Java isSpaceChar; just Z (including no-break spaces)
|
||||
* - u_isspace: Z + whitespace ISO controls (including no-break spaces)
|
||||
*
|
||||
* @param c the code point to be tested
|
||||
|
|
Loading…
Add table
Reference in a new issue