Skip to content

Commit 127fe0e

Browse files
mg6maciejthomasnield
authored andcommitted
Fix documentation. (#102)
1 parent 286f3a1 commit 127fe0e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/kotlin/io/reactivex/rxkotlin/disposable.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ operator fun CompositeDisposable.plusAssign(disposable: Disposable) {
1111
}
1212

1313
/**
14-
* Add the subscription to a CompositeSubscription.
15-
* @param compositeDisposable CompositeDisposable to add this subscription to
14+
* Add the disposable to a CompositeDisposable.
15+
* @param compositeDisposable CompositeDisposable to add this disposable to
1616
* @return this instance
1717
*/
1818
fun Disposable.addTo(compositeDisposable: CompositeDisposable): Disposable
19-
= apply { compositeDisposable.add(this) }
19+
= apply { compositeDisposable.add(this) }

0 commit comments

Comments
 (0)