Fix Char.isTitleCase doc
This commit is contained in:
@@ -213,7 +213,10 @@ public actual inline fun Char.lowercase(): String = toString().lowercase()
|
|||||||
public fun Char.lowercase(locale: Locale): String = toString().lowercase(locale)
|
public fun Char.lowercase(locale: Locale): String = toString().lowercase(locale)
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns `true` if this character is a titlecase character.
|
* Returns `true` if this character is a title case letter.
|
||||||
|
*
|
||||||
|
* A character is considered to be a title case letter if its [category] is [CharCategory.TITLECASE_LETTER].
|
||||||
|
*
|
||||||
* @sample samples.text.Chars.isTitleCase
|
* @sample samples.text.Chars.isTitleCase
|
||||||
*/
|
*/
|
||||||
@kotlin.internal.InlineOnly
|
@kotlin.internal.InlineOnly
|
||||||
|
|||||||
Reference in New Issue
Block a user