Skip to content

Commit 248ec2e

Browse files
committed
Merge branch 'master' of https://[email protected]/apache/commons-lang.git
2 parents a064ec8 + f585b64 commit 248ec2e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Diff for: src/main/java/org/apache/commons/lang3/Range.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,7 @@ public boolean isEndedBy(final T element) {
485485
}
486486

487487
/**
488-
* Whether or not the Range is using the natural ordering of the elements.
488+
* Tests whether or not the Range is using the natural ordering of the elements.
489489
*
490490
* <p>Natural ordering uses an internal comparator implementation, thus this
491491
* method is the only way to check if a null comparator was specified.</p>
@@ -497,7 +497,7 @@ public boolean isNaturalOrdering() {
497497
}
498498

499499
/**
500-
* Checks whether this range is overlapped by the specified range.
500+
* Tests whether this range is overlapped by the specified range.
501501
*
502502
* <p>Two ranges overlap if there is at least one element in common.</p>
503503
*
@@ -518,7 +518,7 @@ public boolean isOverlappedBy(final Range<T> otherRange) {
518518
}
519519

520520
/**
521-
* Checks whether this range starts with the specified element.
521+
* Tests whether this range starts with the specified element.
522522
*
523523
* @param element the element to check for, null returns false
524524
* @return true if the specified element occurs within this range

Diff for: src/main/java/org/apache/commons/lang3/text/translate/NumericEntityUnescaper.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ public NumericEntityUnescaper(final OPTION... options) {
8989
}
9090

9191
/**
92-
* Whether the passed in option is currently set.
92+
* Tests whether the passed in option is currently set.
9393
*
9494
* @param option to check state of
9595
* @return whether the option is set

0 commit comments

Comments
 (0)