Fix Dokka warnings

This commit is contained in:
Sébastien Deleuze 2020-10-27 11:21:44 +01:00
parent d1e6883d5d
commit 4503260282
2 changed files with 5 additions and 2 deletions

View File

@ -106,6 +106,9 @@ dokka {
externalDocumentationLink { externalDocumentationLink {
url = new URL("https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/") url = new URL("https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/")
} }
externalDocumentationLink {
url = new URL("https://r2dbc.io/spec/0.8.3.RELEASE/api/")
}
} }
} }

View File

@ -28,7 +28,7 @@ suspend fun DatabaseClient.GenericExecuteSpec.await() {
} }
/** /**
* Extension for [DatabaseClient.BindSpec.bind] providing a variant leveraging reified type parameters * Extension for [DatabaseClient.GenericExecuteSpec.bind] providing a variant leveraging reified type parameters
* *
* @author Mark Paluch * @author Mark Paluch
* @author Ibanga Enoobong Ime * @author Ibanga Enoobong Ime
@ -37,7 +37,7 @@ suspend fun DatabaseClient.GenericExecuteSpec.await() {
inline fun <reified T : Any> DatabaseClient.GenericExecuteSpec.bind(index: Int, value: T?) = bind(index, Parameter.fromOrEmpty(value, T::class.java)) inline fun <reified T : Any> DatabaseClient.GenericExecuteSpec.bind(index: Int, value: T?) = bind(index, Parameter.fromOrEmpty(value, T::class.java))
/** /**
* Extension for [DatabaseClient.BindSpec.bind] providing a variant leveraging reified type parameters * Extension for [DatabaseClient.GenericExecuteSpec.bind] providing a variant leveraging reified type parameters
* *
* @author Mark Paluch * @author Mark Paluch
* @author Ibanga Enoobong Ime * @author Ibanga Enoobong Ime