@@ -10787,7 +10787,7 @@ public final Maybe<T> reduce(BiFunction<T, T, T> reducer) {
1078710787 * @param reducer
1078810788 * an accumulator function to be invoked on each item emitted by the source Publisher, the
1078910789 * 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
1079110791 * items emitted by the source Publisher
1079210792 * @see <a href="http://reactivex.io/documentation/operators/reduce.html">ReactiveX operators documentation: Reduce</a>
1079310793 * @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) {
1080310803 }
1080410804
1080510805 /**
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
1080710807 * Publisher and a seed value derived from calling a specified seedSupplier, then feeds the result
1080810808 * of that function along with the second item emitted by a Publisher into the same function, and so on until
1080910809 * 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) {
1082810828 * @param reducer
1082910829 * an accumulator function to be invoked on each item emitted by the source Publisher, the
1083010830 * 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
1083210832 * items emitted by the source Publisher
1083310833 * @see <a href="http://reactivex.io/documentation/operators/reduce.html">ReactiveX operators documentation: Reduce</a>
1083410834 * @see <a href="http://en.wikipedia.org/wiki/Fold_(higher-order_function)">Wikipedia: Fold (higher-order function)</a>
0 commit comments