Skip to content

Commit 45f6072

Browse files
vanniktechakarnokd
authored andcommitted
1.x: Fix typo eigth to eighth (#4238)
1 parent c3a3d1a commit 45f6072

File tree

8 files changed

+13
-13
lines changed

8 files changed

+13
-13
lines changed

src/main/java/rx/Observable.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11763,7 +11763,7 @@ public final <T1, T2, T3, T4, T5, T6, T7, R> Observable<R> withLatestFrom(
1176311763
* @param <T5> the fifth other source's value type
1176411764
* @param <T6> the sixth other source's value type
1176511765
* @param <T7> the seventh other source's value type
11766-
* @param <T8> the eigth other source's value type
11766+
* @param <T8> the eighth other source's value type
1176711767
* @param <R> the result value type
1176811768
* @param o1 the first other Observable
1176911769
* @param o2 the second other Observable

src/main/java/rx/Single.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1213,7 +1213,7 @@ public R call(Object... args) {
12131213
* @param <T5> the fifth source Single's value type
12141214
* @param <T6> the sixth source Single's value type
12151215
* @param <T7> the seventh source Single's value type
1216-
* @param <T8> the eigth source Single's value type
1216+
* @param <T8> the eighth source Single's value type
12171217
* @param <R> the result value type
12181218
* @param s1
12191219
* the first source Single
@@ -1265,7 +1265,7 @@ public R call(Object... args) {
12651265
* @param <T5> the fifth source Single's value type
12661266
* @param <T6> the sixth source Single's value type
12671267
* @param <T7> the seventh source Single's value type
1268-
* @param <T8> the eigth source Single's value type
1268+
* @param <T8> the eighth source Single's value type
12691269
* @param <T9> the ninth source Single's value type
12701270
* @param <R> the result value type
12711271
* @param s1

src/main/java/rx/functions/Action8.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* @param <T5> the fifth argument type
2525
* @param <T6> the sixth argument type
2626
* @param <T7> the seventh argument type
27-
* @param <T8> the eigth argument type
27+
* @param <T8> the eighth argument type
2828
*/
2929
public interface Action8<T1, T2, T3, T4, T5, T6, T7, T8> extends Action {
3030
void call(T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, T6 t6, T7 t7, T8 t8);

src/main/java/rx/functions/Action9.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* @param <T5> the fifth argument type
2525
* @param <T6> the sixth argument type
2626
* @param <T7> the seventh argument type
27-
* @param <T8> the eigth argument type
27+
* @param <T8> the eighth argument type
2828
* @param <T9> the ninth argument type
2929
*/
3030
public interface Action9<T1, T2, T3, T4, T5, T6, T7, T8, T9> extends Action {

src/main/java/rx/functions/Actions.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ public static <T1, T2, T3, T4, T5, T6, T7> Func7<T1, T2, T3, T4, T5, T6, T7, Voi
229229
* @param <T5> the fifth argument type
230230
* @param <T6> the sixth argument type
231231
* @param <T7> the seventh argument type
232-
* @param <T8> the eigth argument type
232+
* @param <T8> the eighth argument type
233233
* @param action
234234
* the {@link Action8} to convert
235235
* @return a {@link Func8} that calls {@code action} and returns {@code null}
@@ -249,7 +249,7 @@ public static <T1, T2, T3, T4, T5, T6, T7, T8> Func8<T1, T2, T3, T4, T5, T6, T7,
249249
* @param <T5> the fifth argument type
250250
* @param <T6> the sixth argument type
251251
* @param <T7> the seventh argument type
252-
* @param <T8> the eigth argument type
252+
* @param <T8> the eighth argument type
253253
* @param <T9> the ninth argument type
254254
* @param action
255255
* the {@link Action9} to convert
@@ -473,7 +473,7 @@ public R call(T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, T6 t6, T7 t7) {
473473
* @param <T5> the fifth argument type
474474
* @param <T6> the sixth argument type
475475
* @param <T7> the seventh argument type
476-
* @param <T8> the eigth argument type
476+
* @param <T8> the eighth argument type
477477
* @param <R> the result type
478478
* @param action
479479
* the {@link Action8} to convert
@@ -502,7 +502,7 @@ public R call(T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, T6 t6, T7 t7, T8 t8) {
502502
* @param <T5> the fifth argument type
503503
* @param <T6> the sixth argument type
504504
* @param <T7> the seventh argument type
505-
* @param <T8> the eigth argument type
505+
* @param <T8> the eighth argument type
506506
* @param <T9> the ninth argument type
507507
* @param <R> the result type
508508
* @param action

src/main/java/rx/functions/Func8.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* @param <T5> the fifth argument type
2525
* @param <T6> the sixth argument type
2626
* @param <T7> the seventh argument type
27-
* @param <T8> the eigth argument type
27+
* @param <T8> the eighth argument type
2828
* @param <R> the result type
2929
*/
3030
public interface Func8<T1, T2, T3, T4, T5, T6, T7, T8, R> extends Function {

src/main/java/rx/functions/Func9.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* @param <T5> the fifth argument type
2525
* @param <T6> the sixth argument type
2626
* @param <T7> the seventh argument type
27-
* @param <T8> the eigth argument type
27+
* @param <T8> the eighth argument type
2828
* @param <T9> the ninth argument type
2929
* @param <R> the result type
3030
*/

src/main/java/rx/functions/Functions.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ public R call(Object... args) {
241241
* @param <T4> the fifth argument type
242242
* @param <T5> the sixth argument type
243243
* @param <T6> the seventh argument type
244-
* @param <T7> the eigth argument type
244+
* @param <T7> the eighth argument type
245245
* @param <R> the result type
246246
* @param f
247247
* the {@code Func8} to convert
@@ -272,7 +272,7 @@ public R call(Object... args) {
272272
* @param <T4> the fifth argument type
273273
* @param <T5> the sixth argument type
274274
* @param <T6> the seventh argument type
275-
* @param <T7> the eigth argument type
275+
* @param <T7> the eighth argument type
276276
* @param <T8> the ninth argument type
277277
* @param <R> the result type
278278
* @param f

0 commit comments

Comments
 (0)