Skip to content

2.x: fix Javadoc mistakes and some style #5460

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 3, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions src/main/java/io/reactivex/Completable.java
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ public static Completable concat(Iterable<? extends CompletableSource> sources)
/**
* Returns a Completable which completes only when all sources complete, one after another.
* <dl>
* <dt><b>Backpressure:</b><dt>
* <dt><b>Backpressure:</b></dt>
* <dd>The returned {@code Completable} honors the backpressure of the downstream consumer
* and expects the other {@code Publisher} to honor it as well.</dd>
* <dt><b>Scheduler:</b></dt>
Expand All @@ -163,7 +163,7 @@ public static Completable concat(Publisher<? extends CompletableSource> sources)
/**
* Returns a Completable which completes only when all sources complete, one after another.
* <dl>
* <dt><b>Backpressure:</b><dt>
* <dt><b>Backpressure:</b></dt>
* <dd>The returned {@code Completable} honors the backpressure of the downstream consumer
* and expects the other {@code Publisher} to honor it as well.</dd>
* <dt><b>Scheduler:</b></dt>
Expand Down Expand Up @@ -396,7 +396,7 @@ public static <T> Completable fromObservable(final ObservableSource<T> observabl
* Returns a Completable instance that subscribes to the given publisher, ignores all values and
* emits only the terminal event.
* <dl>
* <dt><b>Backpressure:</b><dt>
* <dt><b>Backpressure:</b></dt>
* <dd>The returned {@code Completable} honors the backpressure of the downstream consumer
* and expects the other {@code Publisher} to honor it as well.</dd>
* <dt><b>Scheduler:</b></dt>
Expand Down Expand Up @@ -480,7 +480,7 @@ public static Completable merge(Iterable<? extends CompletableSource> sources) {
* Returns a Completable instance that subscribes to all sources at once and
* completes only when all source Completables complete or one of them emits an error.
* <dl>
* <dt><b>Backpressure:</b><dt>
* <dt><b>Backpressure:</b></dt>
* <dd>The returned {@code Completable} honors the backpressure of the downstream consumer
* and expects the other {@code Publisher} to honor it as well.</dd>
* <dt><b>Scheduler:</b></dt>
Expand All @@ -501,7 +501,7 @@ public static Completable merge(Publisher<? extends CompletableSource> sources)
* Returns a Completable instance that keeps subscriptions to a limited number of sources at once and
* completes only when all source Completables complete or one of them emits an error.
* <dl>
* <dt><b>Backpressure:</b><dt>
* <dt><b>Backpressure:</b></dt>
* <dd>The returned {@code Completable} honors the backpressure of the downstream consumer
* and expects the other {@code Publisher} to honor it as well.</dd>
* <dt><b>Scheduler:</b></dt>
Expand All @@ -525,7 +525,7 @@ public static Completable merge(Publisher<? extends CompletableSource> sources,
* completes only when all source Completables terminate in one way or another, combining any exceptions
* thrown by either the sources Observable or the inner Completable instances.
* <dl>
* <dt><b>Backpressure:</b><dt>
* <dt><b>Backpressure:</b></dt>
* <dd>The returned {@code Flowable} honors the backpressure of the downstream consumer
* and expects the other {@code Publisher} to honor it as well.
* <dt><b>Scheduler:</b></dt>
Expand Down Expand Up @@ -591,7 +591,7 @@ public static Completable mergeDelayError(Iterable<? extends CompletableSource>
* any error emitted by either the sources observable or any of the inner Completables until all of
* them terminate in a way or another.
* <dl>
* <dt><b>Backpressure:</b><dt>
* <dt><b>Backpressure:</b></dt>
* <dd>The returned {@code Completable} honors the backpressure of the downstream consumer
* and expects the other {@code Publisher} to honor it as well.</dd>
* <dt><b>Scheduler:</b></dt>
Expand All @@ -614,7 +614,7 @@ public static Completable mergeDelayError(Publisher<? extends CompletableSource>
* observable or any of the inner Completables until all of
* them terminate in a way or another.
* <dl>
* <dt><b>Backpressure:</b><dt>
* <dt><b>Backpressure:</b></dt>
* <dd>The returned {@code Completable} honors the backpressure of the downstream consumer
* and expects the other {@code Publisher} to honor it as well.</dd>
* <dt><b>Scheduler:</b></dt>
Expand Down Expand Up @@ -817,7 +817,7 @@ public final <T> Observable<T> andThen(ObservableSource<T> next) {
* propagated to the downstream subscriber and will result in skipping the subscription of the
* Publisher.
* <dl>
* <dt><b>Backpressure:</b><dt>
* <dt><b>Backpressure:</b></dt>
* <dd>The returned {@code Flowable} honors the backpressure of the downstream consumer
* and expects the other {@code Publisher} to honor it as well.</dd>
* <dt><b>Scheduler:</b></dt>
Expand Down Expand Up @@ -1571,7 +1571,7 @@ public final <T> Observable<T> startWith(Observable<T> other) {
* Returns a Flowable which first delivers the events
* of the other Publisher then runs this Completable.
* <dl>
* <dt><b>Backpressure:</b><dt>
* <dt><b>Backpressure:</b></dt>
* <dd>The returned {@code Flowable} honors the backpressure of the downstream consumer
* and expects the other {@code Publisher} to honor it as well.</dd>
* <dt><b>Scheduler:</b></dt>
Expand Down Expand Up @@ -1877,7 +1877,7 @@ public final <U> U to(Function<? super Completable, U> converter) {
* Returns a Flowable which when subscribed to subscribes to this Completable and
* relays the terminal events to the subscriber.
* <dl>
* <dt><b>Backpressure:</b><dt>
* <dt><b>Backpressure:</b></dt>
* <dd>The returned {@code Flowable} honors the backpressure of the downstream consumer.</dd>
* <dt><b>Scheduler:</b></dt>
* <dd>{@code toFlowable} does not operate by default on a particular {@link Scheduler}.</dd>
Expand Down
Loading