From fb79c6af03fbf6aeef6c33b47b486630c3996339 Mon Sep 17 00:00:00 2001 From: Ilya Gorbunov Date: Thu, 25 Oct 2018 21:02:15 +0300 Subject: [PATCH] Minor: fix doc formatting that caused summary differ in Common and Native --- runtime/src/main/kotlin/kotlin/text/Regex.kt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/runtime/src/main/kotlin/kotlin/text/Regex.kt b/runtime/src/main/kotlin/kotlin/text/Regex.kt index f437e9a9164..86179cb6a96 100644 --- a/runtime/src/main/kotlin/kotlin/text/Regex.kt +++ b/runtime/src/main/kotlin/kotlin/text/Regex.kt @@ -172,8 +172,7 @@ actual public class Regex internal constructor(internal val nativePattern: Patte } /** - * Returns a sequence of all occurrences of a regular expression within the [input] string, - * beginning at the specified [startIndex]. + * Returns a sequence of all occurrences of a regular expression within the [input] string, beginning at the specified [startIndex]. */ actual fun findAll(input: CharSequence, startIndex: Int): Sequence = generateSequence({ find(input, startIndex) }, MatchResult::next)