Skip to content

Commit 8f952df

Browse files
committed
Javadoc
1 parent 84bbae3 commit 8f952df

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/java/org/apache/commons/lang3/IntegerRange.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public final class IntegerRange extends NumberRange<Integer> {
3333
private static final long serialVersionUID = 1L;
3434

3535
/**
36-
* Creates a range with the specified minimum and maximum values (both inclusive).
36+
* Creates a closed range with the specified minimum and maximum values (both inclusive).
3737
*
3838
* <p>
3939
* 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) {
5252
}
5353

5454
/**
55-
* Creates a range with the specified minimum and maximum values (both inclusive).
55+
* Creates a closed range with the specified minimum and maximum values (both inclusive).
5656
*
5757
* <p>
5858
* 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
7272
}
7373

7474
/**
75-
* Creates an instance.
75+
* Creates a new instance.
7676
*
7777
* @param number1 the first element, not null
7878
* @param number2 the second element, not null

0 commit comments

Comments
 (0)