Skip to content

Commit

Permalink
3.x: fix typo in BehaviorSubject.java
Browse files Browse the repository at this point in the history
  • Loading branch information
harrygaoos committed Jul 19, 2022
1 parent f980960 commit 39438c1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@
*
* TestObserver<Integer> to1 = observable.test();
*
* observable.onNext(1);
* subject.onNext(1);
* // this will "clear" the cache
* observable.onNext(EMPTY);
* subject.onNext(EMPTY);
*
* TestObserver<Integer> to2 = observable.test();
*
Expand Down

0 comments on commit 39438c1

Please sign in to comment.