Format Other_Uppercase/Other_Lowercase property as an identifier in docs
This commit is contained in:
+2
-2
@@ -60,14 +60,14 @@ internal open class LetterRangesWriter(protected val strategy: RangesWritingStra
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns `true` if this character is a lower case letter, or it has contributory property Other_Lowercase.
|
||||
* Returns `true` if this character is a lower case letter, or it has contributory property `Other_Lowercase`.
|
||||
*/
|
||||
internal fun Char.isLowerCaseImpl(): Boolean {
|
||||
return getLetterType() == 1 || code.isOtherLowercase()
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns `true` if this character is an upper case letter, or it has contributory property Other_Uppercase.
|
||||
* Returns `true` if this character is an upper case letter, or it has contributory property `Other_Uppercase`.
|
||||
*/
|
||||
internal fun Char.isUpperCaseImpl(): Boolean {
|
||||
return getLetterType() == 2 || code.isOtherUppercase()
|
||||
|
||||
Reference in New Issue
Block a user