Skip to content

Commit

Permalink
Add missing indent to error message (Kotlin#3022)
Browse files Browse the repository at this point in the history
  • Loading branch information
NWuensche committed Nov 15, 2021
1 parent 5e870c1 commit c112be4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion reactive/kotlinx-coroutines-rx2/src/RxCompletable.kt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public fun rxCompletable(
context: CoroutineContext = EmptyCoroutineContext,
block: suspend CoroutineScope.() -> Unit
): Completable {
require(context[Job] === null) { "Completable context cannot contain job in it." +
require(context[Job] === null) { "Completable context cannot contain job in it. " +
"Its lifecycle should be managed via Disposable handle. Had $context" }
return rxCompletableInternal(GlobalScope, context, block)
}
Expand Down

0 comments on commit c112be4

Please sign in to comment.