Skip to content

Commit a9780f6

Browse files
authored
Fix internal regexp (#475)
This didn't work quite right in the conversion from groovy
1 parent ce83153 commit a9780f6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

build.gradle.kts

+2-1
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,8 @@ subprojects {
208208
url.set(URI("https://kotlin.github.io/kotlinx.coroutines/index.html").toURL())
209209
}
210210
perPackageOption {
211-
matchingRegex.set("/.*\\.internal.*/")
211+
// language=RegExp
212+
matchingRegex.set(".*\\.internal\\..*")
212213
suppress.set(true)
213214
}
214215
val moduleMd = project.layout.projectDirectory.file("Module.md")

0 commit comments

Comments
 (0)