Skip to content

Commit fd496db

Browse files
authored
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
1 parent a29e7e4 commit fd496db

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: docs/Backpressure.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ someObservable.subscribe(new Subscriber<T>() {
128128
}
129129

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

170170
# Further reading
171171

172-
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)).
172+
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)).
173173

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

0 commit comments

Comments
 (0)