Skip to content

Commit

Permalink
2.x: fix DisposableX copy-paste error in javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
akarnokd committed Mar 29, 2017
1 parent 48489dc commit 7c95808
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* <p>Use the public {@link #dispose()} method to dispose the sequence from within an
* {@code onNext} implementation.
*
* <p>Like all other consumers, {@code DefaultObserver} can be subscribed only once.
* <p>Like all other consumers, {@code DisposableObserver} can be subscribed only once.
* Any subsequent attempt to subscribe it to a new source will yield an
* {@link IllegalStateException} with message {@code "Disposable already set!"}.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
* Calling {@link #request(long)} inside {@link #onNext(Object)} can happen at any time
* because by design, {@code onNext} calls from upstream are non-reentrant and non-overlapping.
*
* <p>Like all other consumers, {@code DefaultSubscriber} can be subscribed only once.
* <p>Like all other consumers, {@code DisposableSubscriber} can be subscribed only once.
* Any subsequent attempt to subscribe it to a new source will yield an
* {@link IllegalStateException} with message {@code "Subscription already set!"}.
*
Expand Down

0 comments on commit 7c95808

Please sign in to comment.