From fdd9287836baec9685c3a5f04580fd347467dfed Mon Sep 17 00:00:00 2001 From: Abduqodiri Qurbonzoda Date: Mon, 31 May 2021 02:11:09 +0300 Subject: [PATCH] Get rid of platform differences in Regex.split() doc --- kotlin-native/runtime/src/main/kotlin/kotlin/text/Regex.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kotlin-native/runtime/src/main/kotlin/kotlin/text/Regex.kt b/kotlin-native/runtime/src/main/kotlin/kotlin/text/Regex.kt index 7d8b9c1b6de..1fba8b7b46b 100644 --- a/kotlin-native/runtime/src/main/kotlin/kotlin/text/Regex.kt +++ b/kotlin-native/runtime/src/main/kotlin/kotlin/text/Regex.kt @@ -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 {