ICU-3170 fix documentation for loose prop name matching

X-SVN-Rev: 15186
This commit is contained in:
Markus Scherer 2004-05-06 20:58:01 +00:00
parent 4aaaefba5e
commit 3534607a56
2 changed files with 16 additions and 8 deletions

View File

@ -77,10 +77,14 @@ getEBCDICPropertyNameChar(const char *name) {
} }
/** /**
* Unicode property names and property value names are compared * Unicode property names and property value names are compared "loosely".
* "loosely". Property[Value]Aliases.txt say: *
* "With loose matching of property names, the case distinctions, whitespace, * UCD.html 4.0.1 says:
* and '_' are ignored." * For all property names, property value names, and for property values for
* Enumerated, Binary, or Catalog properties, use the following
* loose matching rule:
*
* LM3. Ignore case, whitespace, underscore ('_'), and hyphens.
* *
* This function does just that, for (char *) name strings. * This function does just that, for (char *) name strings.
* It is almost identical to ucnv_compareNames() but also ignores * It is almost identical to ucnv_compareNames() but also ignores

View File

@ -210,10 +210,14 @@ uprv_getMaxValues(int32_t column);
/** /**
* \var uprv_comparePropertyNames * \var uprv_comparePropertyNames
* Unicode property names and property value names are compared * Unicode property names and property value names are compared "loosely".
* "loosely". Property[Value]Aliases.txt say: *
* "With loose matching of property names, the case distinctions, whitespace, * UCD.html 4.0.1 says:
* and '_' are ignored." * For all property names, property value names, and for property values for
* Enumerated, Binary, or Catalog properties, use the following
* loose matching rule:
*
* LM3. Ignore case, whitespace, underscore ('_'), and hyphens.
* *
* This function does just that, for (char *) name strings. * This function does just that, for (char *) name strings.
* It is almost identical to ucnv_compareNames() but also ignores * It is almost identical to ucnv_compareNames() but also ignores