Get rid of platform differences in Regex.split() doc
This commit is contained in:
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.
|
* 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.
|
* @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")
|
@Suppress("ACTUAL_FUNCTION_WITH_DEFAULT_ARGUMENTS")
|
||||||
actual fun split(input: CharSequence, limit: Int = 0): List<String> {
|
actual fun split(input: CharSequence, limit: Int = 0): List<String> {
|
||||||
|
|||||||
Reference in New Issue
Block a user