Skip to content

1.x: Fix typo eigth to eighth #4238

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 24, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/main/java/rx/Observable.java
Original file line number Diff line number Diff line change
Expand Up @@ -11763,7 +11763,7 @@ public final <T1, T2, T3, T4, T5, T6, T7, R> Observable<R> withLatestFrom(
* @param <T5> the fifth other source's value type
* @param <T6> the sixth other source's value type
* @param <T7> the seventh other source's value type
* @param <T8> the eigth other source's value type
* @param <T8> the eighth other source's value type
* @param <R> the result value type
* @param o1 the first other Observable
* @param o2 the second other Observable
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/rx/Single.java
Original file line number Diff line number Diff line change
Expand Up @@ -1213,7 +1213,7 @@ public R call(Object... args) {
* @param <T5> the fifth source Single's value type
* @param <T6> the sixth source Single's value type
* @param <T7> the seventh source Single's value type
* @param <T8> the eigth source Single's value type
* @param <T8> the eighth source Single's value type
* @param <R> the result value type
* @param s1
* the first source Single
Expand Down Expand Up @@ -1265,7 +1265,7 @@ public R call(Object... args) {
* @param <T5> the fifth source Single's value type
* @param <T6> the sixth source Single's value type
* @param <T7> the seventh source Single's value type
* @param <T8> the eigth source Single's value type
* @param <T8> the eighth source Single's value type
* @param <T9> the ninth source Single's value type
* @param <R> the result value type
* @param s1
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/rx/functions/Action8.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* @param <T5> the fifth argument type
* @param <T6> the sixth argument type
* @param <T7> the seventh argument type
* @param <T8> the eigth argument type
* @param <T8> the eighth argument type
*/
public interface Action8<T1, T2, T3, T4, T5, T6, T7, T8> extends Action {
void call(T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, T6 t6, T7 t7, T8 t8);
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/rx/functions/Action9.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* @param <T5> the fifth argument type
* @param <T6> the sixth argument type
* @param <T7> the seventh argument type
* @param <T8> the eigth argument type
* @param <T8> the eighth argument type
* @param <T9> the ninth argument type
*/
public interface Action9<T1, T2, T3, T4, T5, T6, T7, T8, T9> extends Action {
Expand Down
8 changes: 4 additions & 4 deletions src/main/java/rx/functions/Actions.java
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ public static <T1, T2, T3, T4, T5, T6, T7> Func7<T1, T2, T3, T4, T5, T6, T7, Voi
* @param <T5> the fifth argument type
* @param <T6> the sixth argument type
* @param <T7> the seventh argument type
* @param <T8> the eigth argument type
* @param <T8> the eighth argument type
* @param action
* the {@link Action8} to convert
* @return a {@link Func8} that calls {@code action} and returns {@code null}
Expand All @@ -249,7 +249,7 @@ public static <T1, T2, T3, T4, T5, T6, T7, T8> Func8<T1, T2, T3, T4, T5, T6, T7,
* @param <T5> the fifth argument type
* @param <T6> the sixth argument type
* @param <T7> the seventh argument type
* @param <T8> the eigth argument type
* @param <T8> the eighth argument type
* @param <T9> the ninth argument type
* @param action
* the {@link Action9} to convert
Expand Down Expand Up @@ -473,7 +473,7 @@ public R call(T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, T6 t6, T7 t7) {
* @param <T5> the fifth argument type
* @param <T6> the sixth argument type
* @param <T7> the seventh argument type
* @param <T8> the eigth argument type
* @param <T8> the eighth argument type
* @param <R> the result type
* @param action
* the {@link Action8} to convert
Expand Down Expand Up @@ -502,7 +502,7 @@ public R call(T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, T6 t6, T7 t7, T8 t8) {
* @param <T5> the fifth argument type
* @param <T6> the sixth argument type
* @param <T7> the seventh argument type
* @param <T8> the eigth argument type
* @param <T8> the eighth argument type
* @param <T9> the ninth argument type
* @param <R> the result type
* @param action
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/rx/functions/Func8.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* @param <T5> the fifth argument type
* @param <T6> the sixth argument type
* @param <T7> the seventh argument type
* @param <T8> the eigth argument type
* @param <T8> the eighth argument type
* @param <R> the result type
*/
public interface Func8<T1, T2, T3, T4, T5, T6, T7, T8, R> extends Function {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/rx/functions/Func9.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* @param <T5> the fifth argument type
* @param <T6> the sixth argument type
* @param <T7> the seventh argument type
* @param <T8> the eigth argument type
* @param <T8> the eighth argument type
* @param <T9> the ninth argument type
* @param <R> the result type
*/
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/rx/functions/Functions.java
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ public R call(Object... args) {
* @param <T4> the fifth argument type
* @param <T5> the sixth argument type
* @param <T6> the seventh argument type
* @param <T7> the eigth argument type
* @param <T7> the eighth argument type
* @param <R> the result type
* @param f
* the {@code Func8} to convert
Expand Down Expand Up @@ -272,7 +272,7 @@ public R call(Object... args) {
* @param <T4> the fifth argument type
* @param <T5> the sixth argument type
* @param <T6> the seventh argument type
* @param <T7> the eigth argument type
* @param <T7> the eighth argument type
* @param <T8> the ninth argument type
* @param <R> the result type
* @param f
Expand Down