[K/N] Fix MatchGroup.range documentation
As a part of efforts to stabilize K/N stdlib.
This commit is contained in:
committed by
Space Team
parent
2463b904f7
commit
3a4a00ef84
@@ -69,8 +69,6 @@ public actual enum class RegexOption(override val value: Int, override val mask:
|
|||||||
*
|
*
|
||||||
* @param value The value of captured group.
|
* @param value The value of captured group.
|
||||||
* @param range The range of indices in the input string where group was captured.
|
* @param range The range of indices in the input string where group was captured.
|
||||||
*
|
|
||||||
* The [range] property is available on JVM only.
|
|
||||||
*/
|
*/
|
||||||
public actual data class MatchGroup(public actual val value: String, public val range: IntRange)
|
public actual data class MatchGroup(public actual val value: String, public val range: IntRange)
|
||||||
|
|
||||||
|
|||||||
@@ -61,8 +61,6 @@ public actual enum class RegexOption(override val value: Int, override val mask:
|
|||||||
*
|
*
|
||||||
* @param value The value of captured group.
|
* @param value The value of captured group.
|
||||||
* @param range The range of indices in the input string where group was captured.
|
* @param range The range of indices in the input string where group was captured.
|
||||||
*
|
|
||||||
* The [range] property is available on JVM only.
|
|
||||||
*/
|
*/
|
||||||
public actual data class MatchGroup(actual val value: String, val range: IntRange)
|
public actual data class MatchGroup(actual val value: String, val range: IntRange)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user