diff --git a/libraries/stdlib/js/src/kotlin/text/char.kt b/libraries/stdlib/js/src/kotlin/text/char.kt index deec03b7d2d..76b8ed68138 100644 --- a/libraries/stdlib/js/src/kotlin/text/char.kt +++ b/libraries/stdlib/js/src/kotlin/text/char.kt @@ -71,7 +71,7 @@ public actual fun Char.uppercaseChar(): Char { * * This function supports one-to-many character mapping, thus the length of the returned string can be greater than one. * For example, `'\uFB00'.uppercase()` returns `"\u0046\u0046"`, - * where `'\uFB00'` is the LATIN SMALL LIGATURE FF character (`ff`). + * where `'\uFB00'` is the LATIN SMALL LIGATURE FF character. * If this character has no upper case mapping, the result of `toString()` of this char is returned. * * @sample samples.text.Chars.uppercase