Skip to content

Fix typos in Backpressure.md #6927

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 8, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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)