@@ -5357,7 +5357,7 @@ public final <R> Observable<R> publish(Func1<? super Observable<T>, ? extends Ob
5357
5357
}
5358
5358
5359
5359
/**
5360
- * Returns an Observable that applies a function of your choosing to the first item emitted by a source
5360
+ * Returns an Observable that applies a specified accumulator function to the first item emitted by a source
5361
5361
* Observable, then feeds the result of that function along with the second item emitted by the source
5362
5362
* Observable into the same function, and so on until all items have been emitted by the source Observable,
5363
5363
* and emits the final result from the final call to your function as its sole item.
@@ -5397,7 +5397,7 @@ public final Observable<T> reduce(Func2<T, T, T> accumulator) {
5397
5397
}
5398
5398
5399
5399
/**
5400
- * Returns an Observable that applies a function of your choosing to the first item emitted by a source
5400
+ * Returns an Observable that applies a specified accumulator function to the first item emitted by a source
5401
5401
* Observable and a specified seed value, then feeds the result of that function along with the second item
5402
5402
* emitted by an Observable into the same function, and so on until all items have been emitted by the
5403
5403
* source Observable, emitting the final result from the final call to your function as its sole item.
@@ -5431,7 +5431,7 @@ public final <R> Observable<R> reduce(R initialValue, Func2<R, ? super T, R> acc
5431
5431
}
5432
5432
5433
5433
/**
5434
- * Returns an Observable that applies a function of your choosing to the first item emitted by a source
5434
+ * Returns an Observable that applies a specified accumulator function to the first item emitted by a source
5435
5435
* Observable and a specified seed value, then feeds the result of that function along with the second item
5436
5436
* emitted by an Observable into the same function, and so on until all items have been emitted by the
5437
5437
* source Observable, emitting the final result from the final call to your function as its sole item.
0 commit comments