Get rid of platform differences in Regex.split() doc

This commit is contained in:
Abduqodiri Qurbonzoda
2021-05-31 02:11:09 +03:00
committed by Space
parent 0b521b5183
commit fdd9287836
@@ -285,7 +285,7 @@ public actual class Regex internal constructor(internal val nativePattern: Patte
* Splits the [input] CharSequence around matches of this regular expression.
*
* @param limit Non-negative value specifying the maximum number of substrings the string can be split to.
* Zero by default means no limit is set.
* Zero by default means no limit is set.
*/
@Suppress("ACTUAL_FUNCTION_WITH_DEFAULT_ARGUMENTS")
actual fun split(input: CharSequence, limit: Int = 0): List<String> {