From 8f952dfda5a28b9b06152826be2085f759f3723b Mon Sep 17 00:00:00 2001 From: Gary Gregory Date: Sun, 13 Oct 2024 10:30:59 -0400 Subject: [PATCH] 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 eea7781ab0c..4bfee12e40d 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 { 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). * *

* The range uses the natural ordering of the elements to determine where values lie in the range. @@ -52,7 +52,7 @@ public static IntegerRange of(final int fromInclusive, final int toInclusive) { } /** - * 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). * *

* The range uses the natural ordering of the elements to determine where values lie in the range. @@ -72,7 +72,7 @@ public static IntegerRange of(final Integer fromInclusive, final Integer toInclu } /** - * Creates an instance. + * Creates a new instance. * * @param number1 the first element, not null * @param number2 the second element, not null