Fix Dokka warnings
This commit is contained in:
parent
d1e6883d5d
commit
4503260282
|
@ -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/")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue