diff --git a/src/main/java/io/reactivex/rxjava3/core/Flowable.java b/src/main/java/io/reactivex/rxjava3/core/Flowable.java index da68a53dd2..a9f7b0a3b6 100644 --- a/src/main/java/io/reactivex/rxjava3/core/Flowable.java +++ b/src/main/java/io/reactivex/rxjava3/core/Flowable.java @@ -19236,7 +19236,7 @@ public final Flowable> window( * *

Note that this operator doesn't emit anything until the other source has produced at * least one value. The resulting emission only happens when the current {@code Flowable} emits (and - * not when any of the other sources emit, unlike combineLatest). + * not when the other source emits, unlike combineLatest). * If the other source doesn't produce any value and just completes, the sequence is completed immediately. * If the upstream completes before the other source has produced at least one value, the sequence completes * without emission. diff --git a/src/main/java/io/reactivex/rxjava3/core/Observable.java b/src/main/java/io/reactivex/rxjava3/core/Observable.java index a5b8f564a4..27d46ad8c5 100644 --- a/src/main/java/io/reactivex/rxjava3/core/Observable.java +++ b/src/main/java/io/reactivex/rxjava3/core/Observable.java @@ -16077,7 +16077,7 @@ public final Observable> window( * *

Note that this operator doesn't emit anything until the other source has produced at * least one value. The resulting emission only happens when the current {@code Observable} emits (and - * not when any of the other sources emit, unlike combineLatest). + * not when the other source emits, unlike combineLatest). * If the other source doesn't produce any value and just completes, the sequence is completed immediately. * If the upstream completes before the other source has produced at least one value, the sequence completes * without emission.