We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 286f3a1 commit 127fe0eCopy full SHA for 127fe0e
src/main/kotlin/io/reactivex/rxkotlin/disposable.kt
@@ -11,9 +11,9 @@ operator fun CompositeDisposable.plusAssign(disposable: Disposable) {
11
}
12
13
/**
14
- * Add the subscription to a CompositeSubscription.
15
- * @param compositeDisposable CompositeDisposable to add this subscription to
+ * Add the disposable to a CompositeDisposable.
+ * @param compositeDisposable CompositeDisposable to add this disposable to
16
* @return this instance
17
*/
18
fun Disposable.addTo(compositeDisposable: CompositeDisposable): Disposable
19
- = apply { compositeDisposable.add(this) }
+ = apply { compositeDisposable.add(this) }
0 commit comments