@@ -10787,7 +10787,7 @@ public final Maybe<T> reduce(BiFunction<T, T, T> reducer) {
10787
10787
* @param reducer
10788
10788
* an accumulator function to be invoked on each item emitted by the source Publisher, the
10789
10789
* result of which will be used in the next accumulator call
10790
- * @return a Flowable that emits a single item that is the result of accumulating the output from the
10790
+ * @return a Single that emits a single item that is the result of accumulating the output from the
10791
10791
* items emitted by the source Publisher
10792
10792
* @see <a href="http://reactivex.io/documentation/operators/reduce.html">ReactiveX operators documentation: Reduce</a>
10793
10793
* @see <a href="http://en.wikipedia.org/wiki/Fold_(higher-order_function)">Wikipedia: Fold (higher-order function)</a>
@@ -10803,7 +10803,7 @@ public final <R> Single<R> reduce(R seed, BiFunction<R, ? super T, R> reducer) {
10803
10803
}
10804
10804
10805
10805
/**
10806
- * Returns a Flowable that applies a specified accumulator function to the first item emitted by a source
10806
+ * Returns a Single that applies a specified accumulator function to the first item emitted by a source
10807
10807
* Publisher and a seed value derived from calling a specified seedSupplier, then feeds the result
10808
10808
* of that function along with the second item emitted by a Publisher into the same function, and so on until
10809
10809
* all items have been emitted by the source Publisher, emitting the final result from the final call to your
@@ -10828,7 +10828,7 @@ public final <R> Single<R> reduce(R seed, BiFunction<R, ? super T, R> reducer) {
10828
10828
* @param reducer
10829
10829
* an accumulator function to be invoked on each item emitted by the source Publisher, the
10830
10830
* result of which will be used in the next accumulator call
10831
- * @return a Flowable that emits a single item that is the result of accumulating the output from the
10831
+ * @return a Single that emits a single item that is the result of accumulating the output from the
10832
10832
* items emitted by the source Publisher
10833
10833
* @see <a href="http://reactivex.io/documentation/operators/reduce.html">ReactiveX operators documentation: Reduce</a>
10834
10834
* @see <a href="http://en.wikipedia.org/wiki/Fold_(higher-order_function)">Wikipedia: Fold (higher-order function)</a>
0 commit comments