Skip to content
Merged
Changes from all commits
Commits
File filter

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)