Skip to content

Commit 832690d

Browse files
committed
Fix singular wording
1 parent 88682f3 commit 832690d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19236,7 +19236,7 @@ public final <U, V> Flowable<Flowable<T>> window(
1923619236
*
1923719237
* <p>Note that this operator doesn't emit anything until the other source has produced at
1923819238
* least one value. The resulting emission only happens when the current {@code Flowable} emits (and
19239-
* not when any of the other sources emit, unlike combineLatest).
19239+
* not when the other source emits, unlike combineLatest).
1924019240
* If the other source doesn't produce any value and just completes, the sequence is completed immediately.
1924119241
* If the upstream completes before the other source has produced at least one value, the sequence completes
1924219242
* without emission.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16077,7 +16077,7 @@ public final <U, V> Observable<Observable<T>> window(
1607716077
*
1607816078
* <p>Note that this operator doesn't emit anything until the other source has produced at
1607916079
* least one value. The resulting emission only happens when the current {@code Observable} emits (and
16080-
* not when any of the other sources emit, unlike combineLatest).
16080+
* not when the other source emits, unlike combineLatest).
1608116081
* If the other source doesn't produce any value and just completes, the sequence is completed immediately.
1608216082
* If the upstream completes before the other source has produced at least one value, the sequence completes
1608316083
* without emission.

0 commit comments

Comments
 (0)