[K/N] Fix MatchGroup.range documentation

As a part of efforts to stabilize K/N stdlib.
This commit is contained in:
Abduqodiri Qurbonzoda
2023-04-08 22:20:21 +03:00
committed by Space Team
parent 2463b904f7
commit 3a4a00ef84
2 changed files with 0 additions and 4 deletions
@@ -69,8 +69,6 @@ public actual enum class RegexOption(override val value: Int, override val mask:
*
* @param value The value of captured group.
* @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)
@@ -61,8 +61,6 @@ public actual enum class RegexOption(override val value: Int, override val mask:
*
* @param value The value of captured group.
* @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)