[K/JS] Remove ligature that breaks map files comparison pipeline (hack for KT-50589 issue)

This commit is contained in:
Artem Kobzar
2022-09-22 16:03:14 +00:00
committed by Space
parent 2081dc327c
commit d7ef5efa6a
+1 -1
View File
@@ -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