From fb4ddd2f6e9c72b0a267cd827d09f668fd98e5ad Mon Sep 17 00:00:00 2001 From: Abduqodiri Qurbonzoda Date: Thu, 15 Apr 2021 17:24:48 +0300 Subject: [PATCH] [K/N] Fix StringBuilder.deleteRange doc --- .../runtime/src/main/kotlin/kotlin/text/StringBuilder.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kotlin-native/runtime/src/main/kotlin/kotlin/text/StringBuilder.kt b/kotlin-native/runtime/src/main/kotlin/kotlin/text/StringBuilder.kt index a7797461146..9bf4efbe9af 100644 --- a/kotlin-native/runtime/src/main/kotlin/kotlin/text/StringBuilder.kt +++ b/kotlin-native/runtime/src/main/kotlin/kotlin/text/StringBuilder.kt @@ -698,7 +698,7 @@ public actual inline fun StringBuilder.deleteAt(index: Int): StringBuilder = thi * @param startIndex the beginning (inclusive) of the range to remove. * @param endIndex the end (exclusive) of the range to remove. * - * @throws IndexOutOfBoundsException or [IllegalArgumentException] when [startIndex] or [endIndex] is out of range of this string builder indices or when `startIndex > endIndex`. + * @throws IndexOutOfBoundsException or [IllegalArgumentException] when [startIndex] is out of range of this string builder indices or when `startIndex > endIndex`. */ @SinceKotlin("1.4") @WasExperimental(ExperimentalStdlibApi::class)