Skip to content

Commit 1ea6d15

Browse files
committed
make javadoc for zip() variants more precise (#1858)
1 parent 37afd53 commit 1ea6d15

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

src/main/java/rx/Observable.java

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2619,7 +2619,7 @@ public final static <T, Resource> Observable<T> using(
26192619
}
26202620

26212621
/**
2622-
* Returns an Observable that emits the results of a function of your choosing applied to combinations of
2622+
* Returns an Observable that emits the results of a specified combiner function applied to combinations of
26232623
* items emitted, in sequence, by an Iterable of other Observables.
26242624
* <p>
26252625
* {@code zip} applies this function in strict sequence, so the first item emitted by the new Observable
@@ -2654,7 +2654,7 @@ public final static <R> Observable<R> zip(Iterable<? extends Observable<?>> ws,
26542654
}
26552655

26562656
/**
2657-
* Returns an Observable that emits the results of a function of your choosing applied to combinations of
2657+
* Returns an Observable that emits the results of a specified combiner function applied to combinations of
26582658
* <i>n</i> items emitted, in sequence, by the <i>n</i> Observables emitted by a specified Observable.
26592659
* <p>
26602660
* {@code zip} applies this function in strict sequence, so the first item emitted by the new Observable
@@ -2692,7 +2692,7 @@ public Observable<?>[] call(List<? extends Observable<?>> o) {
26922692
}
26932693

26942694
/**
2695-
* Returns an Observable that emits the results of a function of your choosing applied to combinations of
2695+
* Returns an Observable that emits the results of a specified combiner function applied to combinations of
26962696
* two items emitted, in sequence, by two other Observables.
26972697
* <p>
26982698
* <img width="640" height="380" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/zip.png" alt="">
@@ -2726,7 +2726,7 @@ public final static <T1, T2, R> Observable<R> zip(Observable<? extends T1> o1, O
27262726
}
27272727

27282728
/**
2729-
* Returns an Observable that emits the results of a function of your choosing applied to combinations of
2729+
* Returns an Observable that emits the results of a specified combiner function applied to combinations of
27302730
* three items emitted, in sequence, by three other Observables.
27312731
* <p>
27322732
* <img width="640" height="380" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/zip.png" alt="">
@@ -2763,7 +2763,7 @@ public final static <T1, T2, T3, R> Observable<R> zip(Observable<? extends T1> o
27632763
}
27642764

27652765
/**
2766-
* Returns an Observable that emits the results of a function of your choosing applied to combinations of
2766+
* Returns an Observable that emits the results of a specified combiner function applied to combinations of
27672767
* four items emitted, in sequence, by four other Observables.
27682768
* <p>
27692769
* <img width="640" height="380" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/zip.png" alt="">
@@ -2802,7 +2802,7 @@ public final static <T1, T2, T3, T4, R> Observable<R> zip(Observable<? extends T
28022802
}
28032803

28042804
/**
2805-
* Returns an Observable that emits the results of a function of your choosing applied to combinations of
2805+
* Returns an Observable that emits the results of a specified combiner function applied to combinations of
28062806
* five items emitted, in sequence, by five other Observables.
28072807
* <p>
28082808
* <img width="640" height="380" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/zip.png" alt="">
@@ -2843,7 +2843,7 @@ public final static <T1, T2, T3, T4, T5, R> Observable<R> zip(Observable<? exten
28432843
}
28442844

28452845
/**
2846-
* Returns an Observable that emits the results of a function of your choosing applied to combinations of
2846+
* Returns an Observable that emits the results of a specified combiner function applied to combinations of
28472847
* six items emitted, in sequence, by six other Observables.
28482848
* <p>
28492849
* <img width="640" height="380" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/zip.png" alt="">
@@ -2886,7 +2886,7 @@ public final static <T1, T2, T3, T4, T5, T6, R> Observable<R> zip(Observable<? e
28862886
}
28872887

28882888
/**
2889-
* Returns an Observable that emits the results of a function of your choosing applied to combinations of
2889+
* Returns an Observable that emits the results of a specified combiner function applied to combinations of
28902890
* seven items emitted, in sequence, by seven other Observables.
28912891
* <p>
28922892
* <img width="640" height="380" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/zip.png" alt="">
@@ -2931,7 +2931,7 @@ public final static <T1, T2, T3, T4, T5, T6, T7, R> Observable<R> zip(Observable
29312931
}
29322932

29332933
/**
2934-
* Returns an Observable that emits the results of a function of your choosing applied to combinations of
2934+
* Returns an Observable that emits the results of a specified combiner function applied to combinations of
29352935
* eight items emitted, in sequence, by eight other Observables.
29362936
* <p>
29372937
* <img width="640" height="380" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/zip.png" alt="">
@@ -2978,7 +2978,7 @@ public final static <T1, T2, T3, T4, T5, T6, T7, T8, R> Observable<R> zip(Observ
29782978
}
29792979

29802980
/**
2981-
* Returns an Observable that emits the results of a function of your choosing applied to combinations of
2981+
* Returns an Observable that emits the results of a specified combiner function applied to combinations of
29822982
* nine items emitted, in sequence, by nine other Observables.
29832983
* <p>
29842984
* <img width="640" height="380" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/zip.png" alt="">

0 commit comments

Comments
 (0)