Skip to content

Commit 8b97408

Browse files
committed
2.x: Fix aspect of some Completable marbles.
1 parent 382ba69 commit 8b97408

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/java/io/reactivex/Completable.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -511,7 +511,7 @@ public static <T> Completable fromObservable(final ObservableSource<T> observabl
511511
* Returns a Completable instance that subscribes to the given publisher, ignores all values and
512512
* emits only the terminal event.
513513
* <p>
514-
* <img width="640" height="442" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Completable.fromPublisher.png" alt="">
514+
* <img width="640" height="422" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Completable.fromPublisher.png" alt="">
515515
* <p>
516516
* The {@link Publisher} must follow the
517517
* <a href="https://github.com/reactive-streams/reactive-streams-jvm#reactive-streams">Reactive-Streams specification</a>.
@@ -2427,8 +2427,6 @@ public final <T> Flowable<T> toFlowable() {
24272427

24282428
/**
24292429
* Converts this Completable into a {@link Maybe}.
2430-
* <p>
2431-
* <img width="640" height="293" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Completable.toObservable.png" alt="">
24322430
* <dl>
24332431
* <dt><b>Scheduler:</b></dt>
24342432
* <dd>{@code toMaybe} does not operate by default on a particular {@link Scheduler}.</dd>
@@ -2451,6 +2449,8 @@ public final <T> Maybe<T> toMaybe() {
24512449
/**
24522450
* Returns an Observable which when subscribed to subscribes to this Completable and
24532451
* relays the terminal events to the subscriber.
2452+
* <p>
2453+
* <img width="640" height="293" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Completable.toObservable.png" alt="">
24542454
* <dl>
24552455
* <dt><b>Scheduler:</b></dt>
24562456
* <dd>{@code toObservable} does not operate by default on a particular {@link Scheduler}.</dd>

0 commit comments

Comments
 (0)