Skip to content

Commit 6b07923

Browse files
apodkutinakarnokd
authored andcommitted
Fix links for Single class (#6066)
* Change observable.html to single.html * Delete completable.html link which doesn't exist
1 parent 27ce955 commit 6b07923

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/main/java/io/reactivex/Single.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
* <p>
5252
* <img width="640" height="301" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Single.legend.png" alt="">
5353
* <p>
54-
* For more information see the <a href="http://reactivex.io/documentation/observable.html">ReactiveX
54+
* For more information see the <a href="http://reactivex.io/documentation/single.html">ReactiveX
5555
* documentation</a>.
5656
*
5757
* @param <T>
@@ -3591,7 +3591,6 @@ public final <R> R to(Function<? super Single<T>, R> convert) {
35913591
*
35923592
* @return a {@link Completable} that calls {@code onComplete} on it's subscriber when the source {@link Single}
35933593
* calls {@code onSuccess}.
3594-
* @see <a href="http://reactivex.io/documentation/completable.html">ReactiveX documentation: Completable</a>
35953594
* @since 2.0
35963595
* @deprecated see {@link #ignoreElement()} instead, will be removed in 3.0
35973596
*/
@@ -3614,7 +3613,6 @@ public final Completable toCompletable() {
36143613
*
36153614
* @return a {@link Completable} that calls {@code onComplete} on it's observer when the source {@link Single}
36163615
* calls {@code onSuccess}.
3617-
* @see <a href="http://reactivex.io/documentation/completable.html">ReactiveX documentation: Completable</a>
36183616
* @since 2.1.13
36193617
*/
36203618
@CheckReturnValue

0 commit comments

Comments
 (0)