Skip to content

Commit 4e38775

Browse files
committed
Readme: in Kotlin code '...' -> '// ...'
1 parent e355957 commit 4e38775

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ In your convention plugin, apply the plugin and define the additional module inf
6161

6262
```kotlin
6363
plugins {
64-
...
64+
// ...
6565
id("org.gradlex.extra-java-module-info")
6666
}
6767

@@ -176,7 +176,7 @@ You can also be more granular and ignore specific implementations while leaving
176176
```kotlin
177177
extraJavaModuleInfo {
178178
module("org.liquibase:liquibase-core", "liquibase.core") {
179-
...
179+
// ...
180180
ignoreServiceProvider(
181181
"liquibase.change.Change", // the provider
182182
"liquibase.change.core.LoadDataChange", "liquibase.change.core.LoadUpdateDataChange" // Ignored implementations
@@ -339,7 +339,7 @@ extraJavaModuleInfo {
339339
preserveExisting() // extend existing module-info.class
340340
requires("java.desktop")
341341
requires("java.instrument")
342-
...
342+
// ...
343343
}
344344
}
345345
```

0 commit comments

Comments
 (0)