Minor: fix doc formatting that caused summary differ in Common and Native

This commit is contained in:
Ilya Gorbunov
2018-10-25 21:02:15 +03:00
committed by Nikolay Igotti
parent e64594f906
commit fb79c6af03
+1 -2
View File
@@ -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<MatchResult>
= generateSequence({ find(input, startIndex) }, MatchResult::next)