Skip to content

Commit

Permalink
Javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Oct 13, 2024
1 parent 84bbae3 commit 8f952df
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/org/apache/commons/lang3/IntegerRange.java
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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).
*
* <p>
* The range uses the natural ordering of the elements to determine where values lie in the range.
Expand All @@ -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
Expand Down

0 comments on commit 8f952df

Please sign in to comment.