Fix the comment of ComparableUtils, using "smallest", not "largest" (#1058)

This commit is contained in:
徐梦旗 2023-04-17 20:22:01 +08:00 committed by GitHub
parent 4623bf1827
commit f59fa5c36d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -232,7 +232,7 @@ public class ComparableUtils {
* @param <A> Type of what we are comparing.
* @param comparable1 an argument.
* @param comparable2 another argument.
* @return the largest of {@code c1} and {@code c2}.
* @return the smallest of {@code c1} and {@code c2}.
* @see ObjectUtils#min(Comparable...)
* @since 3.13.0
*/