WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
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

Lines changed: 1 addition & 1 deletion
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)