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
commit 8f952dfda5a28b9b06152826be2085f759f3723b Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sun Oct 13 10:30:59 2024 -0400 Javadoc --- src/main/java/org/apache/commons/lang3/IntegerRange.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/apache/commons/lang3/IntegerRange.java b/src/main/java/org/apache/commons/lang3/IntegerRange.java index eea7781ab..4bfee12e4 100644 --- a/src/main/java/org/apache/commons/lang3/IntegerRange.java +++ b/src/main/java/org/apache/commons/lang3/IntegerRange.java @@ -33,7 +33,7 @@ public final class IntegerRange extends NumberRange<Integer> { private static final long serialVersionUID = 1L; /** - * Creates a range with the specified minimum and maximum values (both inclusive). + * Creates a closed range with the specified minimum and maximum values (both inclusive). * * <p> * The range uses the natural ordering of the elements to determine where values lie in the range. @@ -52,7 +52,7 @@ public final class IntegerRange extends NumberRange<Integer> { } /** - * Creates a range with the specified minimum and maximum values (both inclusive). + * Creates a closed range with the specified minimum and maximum values (both inclusive). * * <p> * The range uses the natural ordering of the elements to determine where values lie in the range. @@ -72,7 +72,7 @@ public final class IntegerRange extends NumberRange<Integer> { } /** - * Creates an instance. + * Creates a new instance. * * @param number1 the first element, not null * @param number2 the second element, not null