This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-lang.git


The following commit(s) were added to refs/heads/master by this push:
     new 90b327a96 Fix java doc: 'c1' to 'comparable1', 'c2' to 'comparable2' 
(#1090)
90b327a96 is described below

commit 90b327a96cc31a156e86e8eb7e98f84cb2d822bb
Author: 徐梦旗 <2663479...@qq.com>
AuthorDate: Sat Jul 29 20:05:43 2023 +0800

    Fix java doc: 'c1' to 'comparable1', 'c2' to 'comparable2' (#1090)
---
 .../org/apache/commons/lang3/compare/ComparableUtils.java    | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git 
a/src/main/java/org/apache/commons/lang3/compare/ComparableUtils.java 
b/src/main/java/org/apache/commons/lang3/compare/ComparableUtils.java
index f5db33dae..a8b1eb13a 100644
--- a/src/main/java/org/apache/commons/lang3/compare/ComparableUtils.java
+++ b/src/main/java/org/apache/commons/lang3/compare/ComparableUtils.java
@@ -213,9 +213,9 @@ public class ComparableUtils {
      * </p>
      *
      * @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}.
+     * @param comparable1 the first comparable, may be null.
+     * @param comparable2 the second comparable, may be null.
+     * @return the largest of {@code comparable1} and {@code comparable2}.
      * @see ObjectUtils#max(Comparable...)
      * @since 3.13.0
      */
@@ -230,9 +230,9 @@ public class ComparableUtils {
      * </p>
      *
      * @param <A> Type of what we are comparing.
-     * @param comparable1 an argument.
-     * @param comparable2 another argument.
-     * @return the smallest of {@code c1} and {@code c2}.
+     * @param comparable1 the first comparable, may be null.
+     * @param comparable2 the second comparable, may be null.
+     * @return the smallest of {@code comparable1} and {@code comparable2}.
      * @see ObjectUtils#min(Comparable...)
      * @since 3.13.0
      */

Reply via email to