@@ -14675,10 +14675,9 @@ public final <U> Flowable<T> sample(@NonNull Publisher<U> sampler, boolean emitL
14675
14675
}
14676
14676
14677
14677
/**
14678
- * Returns a {@code Flowable} that applies a specified accumulator function to the first item emitted by the current
14679
- * {@code Flowable}, then feeds the result of that function along with the second item emitted by the current
14680
- * {@code Floawble} into the same function, and so on until all items have been emitted by the current {@code Flowable},
14681
- * emitting the result of each of these iterations.
14678
+ * Returns a {@code Flowable} that emits the first value emitted by the current {@code Flowable}, then emits one value
14679
+ * for each subsequent value emitted by the current {@code Flowable}. Each emission after the first is the result of
14680
+ * applying the specified accumulator function to the previous emission and the corresponding value from the current @{code Flowable}.
14682
14681
* <p>
14683
14682
* <img width="640" height="320" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/scan.v3.png" alt="">
14684
14683
* <p>
@@ -14709,10 +14708,9 @@ public final Flowable<T> scan(@NonNull BiFunction<T, T, T> accumulator) {
14709
14708
}
14710
14709
14711
14710
/**
14712
- * Returns a {@code Flowable} that applies a specified accumulator function to the first item emitted by the current
14713
- * {@code Flowable} and a seed value, then feeds the result of that function along with the second item emitted by
14714
- * the current {@code Flowable} into the same function, and so on until all items have been emitted by the current
14715
- * {@code Flowable}, emitting the result of each of these iterations.
14711
+ * Returns a {@code Flowable} that emits the provided initial (seed) value, then emits one value for each value emitted
14712
+ * by the current {@code Flowable}. Each emission after the first is the result of applying the specified accumulator
14713
+ * function to the previous emission and the corresponding value from the current @{code Flowable}.
14716
14714
* <p>
14717
14715
* <img width="640" height="320" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/scanSeed.v3.png" alt="">
14718
14716
* <p>
@@ -14763,10 +14761,9 @@ public final Flowable<T> scan(@NonNull BiFunction<T, T, T> accumulator) {
14763
14761
}
14764
14762
14765
14763
/**
14766
- * Returns a {@code Flowable} that applies a specified accumulator function to the first item emitted by the current
14767
- * {@code Flowable} and a seed value, then feeds the result of that function along with the second item emitted by
14768
- * the current {@code Flowable} into the same function, and so on until all items have been emitted by the current
14769
- * {@code Flowable}, emitting the result of each of these iterations.
14764
+ * Returns a {@code Flowable} that emits the provided initial (seed) value, then emits one value for each value emitted
14765
+ * by the current {@code Flowable}. Each emission after the first is the result of applying the specified accumulator
14766
+ * function to the previous emission and the corresponding value from the current @{code Flowable}.
14770
14767
* <p>
14771
14768
* <img width="640" height="320" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/scanSeed.v3.png" alt="">
14772
14769
* <p>
0 commit comments