Skip to content

Commit c112be4

Browse files
authored
Add missing indent to error message (#3022)
1 parent 5e870c1 commit c112be4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

reactive/kotlinx-coroutines-rx2/src/RxCompletable.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public fun rxCompletable(
2020
context: CoroutineContext = EmptyCoroutineContext,
2121
block: suspend CoroutineScope.() -> Unit
2222
): Completable {
23-
require(context[Job] === null) { "Completable context cannot contain job in it." +
23+
require(context[Job] === null) { "Completable context cannot contain job in it. " +
2424
"Its lifecycle should be managed via Disposable handle. Had $context" }
2525
return rxCompletableInternal(GlobalScope, context, block)
2626
}

0 commit comments

Comments
 (0)