Skip to content

Commit

Permalink
Fix typos in Backpressure.md (#6927)
Browse files Browse the repository at this point in the history
Fix lower case generic type declaration in reactive pull backpressure's code sample
Fix typo in the Further reading section
  • Loading branch information
stewemetal committed Mar 8, 2020
1 parent a29e7e4 commit fd496db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/Backpressure.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ someObservable.subscribe(new Subscriber<T>() {
}

@Override
public void onNext(t n) {
public void onNext(T n) {
// do something with the emitted item "n"
// request another item:
request(1);
Expand Down Expand Up @@ -169,7 +169,7 @@ If you do not apply any of these operators to an Observable that does not suppor

# Further reading

If the standard operators are providing the expected behavior, [one can write custom operators in RxJava](https://github.com/ReactiveX/RxJava/wiki/Implementing-custom-operators-(draft)).
If the standard operators aren't providing the expected behavior, [one can write custom operators in RxJava](https://github.com/ReactiveX/RxJava/wiki/Implementing-custom-operators-(draft)).

# See also
* [RxJava 0.20.0-RC1 release notes](https://github.com/ReactiveX/RxJava/releases/tag/0.20.0-RC1)

0 comments on commit fd496db

Please sign in to comment.