Incorrect description for JVM toUpperCase method #KT-45884

This commit is contained in:
Abduqodiri Qurbonzoda
2021-04-12 20:03:07 +03:00
parent 7b14975740
commit f253b1fb15
@@ -111,7 +111,7 @@ public actual inline fun Char.isUpperCase(): Boolean = Character.isUpperCase(thi
public actual inline fun Char.isLowerCase(): Boolean = Character.isLowerCase(this)
/**
* Converts this character to lower case using Unicode mapping rules of the invariant locale.
* Converts this character to upper case using Unicode mapping rules of the invariant locale.
*/
@Deprecated("Use uppercaseChar() instead.", ReplaceWith("uppercaseChar()"))
@DeprecatedSinceKotlin(warningSince = "1.5")