Skip to content

Commit dcb5536

Browse files
committed
fix: Scaladoc links do not work in Scala 2.12
1 parent c65ecc3 commit dcb5536

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

flyway/src/main/scala/com/avast/sst/flyway/FlywayModule.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import scala.jdk.CollectionConverters._
88

99
object FlywayModule {
1010

11-
/** Makes [[org.flywaydb.core.Flyway]] from the given [[javax.sql.DataSource]] and config. */
11+
/** Makes [[org.flywaydb.core.Flyway]] from the given `javax.sql.DataSource` and config. */
1212
def make[F[_]: Sync](dataSource: DataSource, config: FlywayConfig): F[Flyway] = {
1313
Sync[F].delay {
1414
val builder = Flyway.configure

jdk-http-client/src/main/scala/com/avast/sst/jdk/httpclient/JdkHttpClientModule.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import javax.net.ssl.SSLContext
88

99
object JdkHttpClientModule {
1010

11-
/** Makes [[java.net.http.HttpClient]] initialized with the given config. */
11+
/** Makes `java.net.http.HttpClient` initialized with the given config. */
1212
def make(
1313
config: JdkHttpClientConfig,
1414
executor: Option[Executor] = None,

0 commit comments

Comments
 (0)