@@ -6470,7 +6470,7 @@ public final <U> Observable<T> sample(Observable<U> sampler) {
6470
6470
}
6471
6471
6472
6472
/**
6473
- * Returns an Observable that applies a function of your choosing to the first item emitted by a source
6473
+ * Returns an Observable that applies a specified accumulator function to the first item emitted by a source
6474
6474
* Observable, then feeds the result of that function along with the second item emitted by the source
6475
6475
* Observable into the same function, and so on until all items have been emitted by the source Observable,
6476
6476
* emitting the result of each of these iterations.
@@ -6496,7 +6496,7 @@ public final Observable<T> scan(Func2<T, T, T> accumulator) {
6496
6496
}
6497
6497
6498
6498
/**
6499
- * Returns an Observable that applies a function of your choosing to the first item emitted by a source
6499
+ * Returns an Observable that applies a specified accumulator function to the first item emitted by a source
6500
6500
* Observable and a seed value, then feeds the result of that function along with the second item emitted by
6501
6501
* the source Observable into the same function, and so on until all items have been emitted by the source
6502
6502
* Observable, emitting the result of each of these iterations.
@@ -6528,7 +6528,7 @@ public final <R> Observable<R> scan(R initialValue, Func2<R, ? super T, R> accum
6528
6528
}
6529
6529
6530
6530
/**
6531
- * Returns an Observable that applies a function of your choosing to the first item emitted by a source
6531
+ * Returns an Observable that applies a specified accumulator function to the first item emitted by a source
6532
6532
* Observable and a seed value, then feeds the result of that function along with the second item emitted by
6533
6533
* the source Observable into the same function, and so on until all items have been emitted by the source
6534
6534
* Observable, emitting the result of each of these iterations.
0 commit comments