Skip to content

Commit 7e9eb4f

Browse files
authored
Add JavaDoc links to the base reactive classes to Getting started (ReactiveX#5836)
1 parent d8f6153 commit 7e9eb4f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -68,11 +68,11 @@ Flowable.just("Hello world")
6868

6969
RxJava 2 features several base classes you can discover operators on:
7070

71-
- `io.reactivex.Flowable`: 0..N flows, supporting Reactive-Streams and backpressure
72-
- `io.reactivex.Observable`: 0..N flows, no backpressure
73-
- `io.reactivex.Single`: a flow of exactly 1 item or an error
74-
- `io.reactivex.Completable`: a flow without items but only a completion or error signal
75-
- `io.reactivex.Maybe`: a flow with no items, exactly one item or an error
71+
- [`io.reactivex.Flowable`](http://reactivex.io/RxJava/2.x/javadoc/io/reactivex/Flowable.html): 0..N flows, supporting Reactive-Streams and backpressure
72+
- [`io.reactivex.Observable`](http://reactivex.io/RxJava/2.x/javadoc/io/reactivex/Observable.html): 0..N flows, no backpressure
73+
- [`io.reactivex.Single`](http://reactivex.io/RxJava/2.x/javadoc/io/reactivex/Single.html): a flow of exactly 1 item or an error
74+
- [`io.reactivex.Completable`](http://reactivex.io/RxJava/2.x/javadoc/io/reactivex/Completable.html): a flow without items but only a completion or error signal
75+
- [`io.reactivex.Maybe`](http://reactivex.io/RxJava/2.x/javadoc/io/reactivex/Maybe.html): a flow with no items, exactly one item or an error
7676

7777
One of the common use cases for RxJava is to run some computation, network request on a background thread and show the results (or error) on the UI thread:
7878

0 commit comments

Comments
 (0)