Skip to content

Commit b5c7957

Browse files
bruce3xakarnokd
authored andcommitted
Fix javadoc for FunctionX (#5347)
1 parent 8bf04e9 commit b5c7957

File tree

7 files changed

+28
-28
lines changed

7 files changed

+28
-28
lines changed

src/main/java/io/reactivex/functions/Function3.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
* A functional interface (callback) that computes a value based on multiple input values.
2020
* @param <T1> the first value type
2121
* @param <T2> the second value type
22-
* @param <T3> the second value type
22+
* @param <T3> the third value type
2323
* @param <R> the result type
2424
*/
2525
public interface Function3<T1, T2, T3, R> {

src/main/java/io/reactivex/functions/Function4.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
* A functional interface (callback) that computes a value based on multiple input values.
2020
* @param <T1> the first value type
2121
* @param <T2> the second value type
22-
* @param <T3> the second value type
23-
* @param <T4> the second value type
22+
* @param <T3> the third value type
23+
* @param <T4> the fourth value type
2424
* @param <R> the result type
2525
*/
2626
public interface Function4<T1, T2, T3, T4, R> {

src/main/java/io/reactivex/functions/Function5.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919
* A functional interface (callback) that computes a value based on multiple input values.
2020
* @param <T1> the first value type
2121
* @param <T2> the second value type
22-
* @param <T3> the second value type
23-
* @param <T4> the second value type
24-
* @param <T5> the second value type
22+
* @param <T3> the third value type
23+
* @param <T4> the fourth value type
24+
* @param <T5> the fifth value type
2525
* @param <R> the result type
2626
*/
2727
public interface Function5<T1, T2, T3, T4, T5, R> {

src/main/java/io/reactivex/functions/Function6.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@
1919
* A functional interface (callback) that computes a value based on multiple input values.
2020
* @param <T1> the first value type
2121
* @param <T2> the second value type
22-
* @param <T3> the second value type
23-
* @param <T4> the second value type
24-
* @param <T5> the second value type
25-
* @param <T6> the second value type
22+
* @param <T3> the third value type
23+
* @param <T4> the fourth value type
24+
* @param <T5> the fifth value type
25+
* @param <T6> the sixth value type
2626
* @param <R> the result type
2727
*/
2828
public interface Function6<T1, T2, T3, T4, T5, T6, R> {

src/main/java/io/reactivex/functions/Function7.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@
1919
* A functional interface (callback) that computes a value based on multiple input values.
2020
* @param <T1> the first value type
2121
* @param <T2> the second value type
22-
* @param <T3> the second value type
23-
* @param <T4> the second value type
24-
* @param <T5> the second value type
25-
* @param <T6> the second value type
26-
* @param <T7> the second value type
22+
* @param <T3> the third value type
23+
* @param <T4> the fourth value type
24+
* @param <T5> the fifth value type
25+
* @param <T6> the sixth value type
26+
* @param <T7> the seventh value type
2727
* @param <R> the result type
2828
*/
2929
public interface Function7<T1, T2, T3, T4, T5, T6, T7, R> {

src/main/java/io/reactivex/functions/Function8.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@
1919
* A functional interface (callback) that computes a value based on multiple input values.
2020
* @param <T1> the first value type
2121
* @param <T2> the second value type
22-
* @param <T3> the second value type
23-
* @param <T4> the second value type
24-
* @param <T5> the second value type
25-
* @param <T6> the second value type
26-
* @param <T7> the second value type
27-
* @param <T8> the second value type
22+
* @param <T3> the third value type
23+
* @param <T4> the fourth value type
24+
* @param <T5> the fifth value type
25+
* @param <T6> the sixth value type
26+
* @param <T7> the seventh value type
27+
* @param <T8> the eighth value type
2828
* @param <R> the result type
2929
*/
3030
public interface Function8<T1, T2, T3, T4, T5, T6, T7, T8, R> {

src/main/java/io/reactivex/functions/Function9.java

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@
1919
* A functional interface (callback) that computes a value based on multiple input values.
2020
* @param <T1> the first value type
2121
* @param <T2> the second value type
22-
* @param <T3> the second value type
23-
* @param <T4> the second value type
24-
* @param <T5> the second value type
25-
* @param <T6> the second value type
26-
* @param <T7> the second value type
27-
* @param <T8> the second value type
28-
* @param <T9> the second value type
22+
* @param <T3> the third value type
23+
* @param <T4> the fourth value type
24+
* @param <T5> the fifth value type
25+
* @param <T6> the sixth value type
26+
* @param <T7> the seventh value type
27+
* @param <T8> the eighth value type
28+
* @param <T9> the ninth value type
2929
* @param <R> the result type
3030
*/
3131
public interface Function9<T1, T2, T3, T4, T5, T6, T7, T8, T9, R> {

0 commit comments

Comments
 (0)