We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e870c1 commit c112be4Copy full SHA for c112be4
reactive/kotlinx-coroutines-rx2/src/RxCompletable.kt
@@ -20,7 +20,7 @@ public fun rxCompletable(
20
context: CoroutineContext = EmptyCoroutineContext,
21
block: suspend CoroutineScope.() -> Unit
22
): Completable {
23
- require(context[Job] === null) { "Completable context cannot contain job in it." +
+ require(context[Job] === null) { "Completable context cannot contain job in it. " +
24
"Its lifecycle should be managed via Disposable handle. Had $context" }
25
return rxCompletableInternal(GlobalScope, context, block)
26
}
0 commit comments