Skip to content

Commit

Permalink
Fix Dokka warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
sdeleuze committed Oct 27, 2020
1 parent d1e6883 commit 4503260
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions gradle/docs.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,9 @@ dokka {
externalDocumentationLink {
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/")
}
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 Ibanga Enoobong Ime
Expand All @@ -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))

/**
* 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 Ibanga Enoobong Ime
Expand Down

0 comments on commit 4503260

Please sign in to comment.