From fd496db9a64320fcb9f9b4d110018bcd41e46c82 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juhos=20Istv=C3=A1n?= Date: Sun, 8 Mar 2020 22:24:20 +0100 Subject: [PATCH] Fix typos in Backpressure.md (#6927) Fix lower case generic type declaration in reactive pull backpressure's code sample Fix typo in the Further reading section --- docs/Backpressure.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/Backpressure.md b/docs/Backpressure.md index bfe90330bb..eadcfff263 100644 --- a/docs/Backpressure.md +++ b/docs/Backpressure.md @@ -128,7 +128,7 @@ someObservable.subscribe(new Subscriber() { } @Override - public void onNext(t n) { + public void onNext(T n) { // do something with the emitted item "n" // request another item: request(1); @@ -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)