Skip to content
This repository was archived by the owner on Nov 23, 2023. It is now read-only.

Commit de53e1d

Browse files
committed
Fix JavaDoc to ComparablePredicateI
Fixes #69
1 parent 5770a0c commit de53e1d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/main/java/io/github/alexengrig/lambdax/function/ComparablePredicateI.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
* @return The {@link java.util.function.Predicate} with compare
4343
* @see java.util.function.Predicate
4444
* @see io.github.alexengrig.lambdax.function.PredicateI#less(Object, Comparator)
45-
* @see java.util.Comparator#comparing(Function)
45+
* @see java.util.Comparator#comparing(java.util.function.Function)
4646
* @see java.lang.Comparable#compareTo(Object)
4747
* @see java.util.Comparator#reversed()
4848
* @since 0.2.0
@@ -60,7 +60,7 @@ default Predicate<T> less(R other) {
6060
* @return The {@link java.util.function.Predicate} with compare
6161
* @see java.util.function.Predicate
6262
* @see io.github.alexengrig.lambdax.function.PredicateI#greater(Object, Comparator)
63-
* @see java.util.Comparator#comparing(Function)
63+
* @see java.util.Comparator#comparing(java.util.function.Function)
6464
* @see java.lang.Comparable#compareTo(Object)
6565
* @see java.util.Comparator#reversed()
6666
* @since 0.2.0
@@ -79,7 +79,7 @@ default Predicate<T> greater(R other) {
7979
* @return The {@link java.util.function.Predicate} with compare
8080
* @see java.util.function.Predicate
8181
* @see io.github.alexengrig.lambdax.function.PredicateI#lessOrEqual(Object, Comparator)
82-
* @see java.util.Comparator#comparing(Function)
82+
* @see java.util.Comparator#comparing(java.util.function.Function)
8383
* @see java.lang.Comparable#compareTo(Object)
8484
* @see java.util.Comparator#reversed()
8585
* @since 0.2.0
@@ -98,7 +98,7 @@ default Predicate<T> lessOrEqual(R other) {
9898
* @return The {@link java.util.function.Predicate} with compare
9999
* @see java.util.function.Predicate
100100
* @see io.github.alexengrig.lambdax.function.PredicateI#greaterOrEqual(Object, Comparator)
101-
* @see java.util.Comparator#comparing(Function)
101+
* @see java.util.Comparator#comparing(java.util.function.Function)
102102
* @see java.lang.Comparable#compareTo(Object)
103103
* @see java.util.Comparator#reversed()
104104
* @since 0.2.0

0 commit comments

Comments
 (0)