[K/N] Fix Char.isISOControl doc

This commit is contained in:
Abduqodiri Qurbonzoda
2021-04-19 18:57:14 +03:00
parent bb2a50a4eb
commit 597b18582a
@@ -83,7 +83,8 @@ external public fun Char.isIdentifierIgnorable(): Boolean
/**
* Returns `true` if this character is an ISO control character.
*
* A character is considered to be an ISO control character if its code is in the range `'\u0000'..'\u001F'` or in the range `'\u007F'..'\u009F'`.
* A character is considered to be an ISO control character if its [category] is [CharCategory.CONTROL],
* meaning the Char is in the range `'\u0000'..'\u001F'` or in the range `'\u007F'..'\u009F'`.
*
* @sample samples.text.Chars.isISOControl
*/