From 83adaebe0a15cc61d30268d239a865ddd1599808 Mon Sep 17 00:00:00 2001 From: sekharchowdary774 Date: Sun, 21 Dec 2025 23:20:12 +0530 Subject: [PATCH] [javadoc] Fix comma spacing in Range Javadoc --- src/main/java/org/apache/commons/lang3/Range.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/org/apache/commons/lang3/Range.java b/src/main/java/org/apache/commons/lang3/Range.java index 4193ca8c705..998f0646f9b 100644 --- a/src/main/java/org/apache/commons/lang3/Range.java +++ b/src/main/java/org/apache/commons/lang3/Range.java @@ -65,7 +65,7 @@ public int compare(final Object obj1, final Object obj2) { *

The range uses the natural ordering of the elements to determine where * values lie in the range.

* - *

The arguments may be passed in the order (min,max) or (max,min). + *

The arguments may be passed in the order (min, max) or (max, min). * The getMinimum and getMaximum methods will return the correct values.

* * @param the type of the elements in this range. @@ -88,7 +88,7 @@ public static > Range between(final T fromInc *

The range uses the specified {@link Comparator} to determine where * values lie in the range.

* - *

The arguments may be passed in the order (min,max) or (max,min). + *

The arguments may be passed in the order (min, max) or (max, min). * The getMinimum and getMaximum methods will return the correct values.

* * @param the type of the elements in this range. @@ -147,7 +147,7 @@ public static Range is(final T element, final Comparator comparator) { *

The range uses the natural ordering of the elements to determine where * values lie in the range.

* - *

The arguments may be passed in the order (min,max) or (max,min). + *

The arguments may be passed in the order (min, max) or (max, min). * The getMinimum and getMaximum methods will return the correct values.

* * @param the type of the elements in this range. @@ -168,7 +168,7 @@ public static > Range of(final T fromInclusiv *

The range uses the specified {@link Comparator} to determine where * values lie in the range.

* - *

The arguments may be passed in the order (min,max) or (max,min). + *

The arguments may be passed in the order (min, max) or (max, min). * The getMinimum and getMaximum methods will return the correct values.

* * @param the type of the elements in this range.