Skip to content

Commit 2c63ebd

Browse files
committed
make javadocs for scan() more precise (#1857)
1 parent 1ea6d15 commit 2c63ebd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/java/rx/Observable.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6470,7 +6470,7 @@ public final <U> Observable<T> sample(Observable<U> sampler) {
64706470
}
64716471

64726472
/**
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
64746474
* Observable, then feeds the result of that function along with the second item emitted by the source
64756475
* Observable into the same function, and so on until all items have been emitted by the source Observable,
64766476
* emitting the result of each of these iterations.
@@ -6496,7 +6496,7 @@ public final Observable<T> scan(Func2<T, T, T> accumulator) {
64966496
}
64976497

64986498
/**
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
65006500
* Observable and a seed value, then feeds the result of that function along with the second item emitted by
65016501
* the source Observable into the same function, and so on until all items have been emitted by the source
65026502
* 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
65286528
}
65296529

65306530
/**
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
65326532
* Observable and a seed value, then feeds the result of that function along with the second item emitted by
65336533
* the source Observable into the same function, and so on until all items have been emitted by the source
65346534
* Observable, emitting the result of each of these iterations.

0 commit comments

Comments
 (0)