Skip to content

Commit ba1f40f

Browse files
authored
2.x: Fix JavaDoc wording of onTerminateDetach (#5783)
1 parent 7e503f0 commit ba1f40f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/io/reactivex/Flowable.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10524,7 +10524,7 @@ public final Flowable<T> onExceptionResumeNext(final Publisher<? extends T> next
1052410524
* <dt><b>Scheduler:</b></dt>
1052510525
* <dd>{@code onTerminateDetach} does not operate by default on a particular {@link Scheduler}.</dd>
1052610526
* </dl>
10527-
* @return a Flowable which out references to the upstream producer and downstream Subscriber if
10527+
* @return a Flowable which nulls out references to the upstream producer and downstream Subscriber if
1052810528
* the sequence is terminated or downstream cancels
1052910529
* @since 2.0
1053010530
*/

src/main/java/io/reactivex/Observable.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9012,7 +9012,7 @@ public final Observable<T> onExceptionResumeNext(final ObservableSource<? extend
90129012
* <dt><b>Scheduler:</b></dt>
90139013
* <dd>{@code onTerminateDetach} does not operate by default on a particular {@link Scheduler}.</dd>
90149014
* </dl>
9015-
* @return an Observable which out references to the upstream producer and downstream Observer if
9015+
* @return an Observable which nulls out references to the upstream producer and downstream Observer if
90169016
* the sequence is terminated or downstream calls dispose()
90179017
* @since 2.0
90189018
*/

0 commit comments

Comments
 (0)