Skip to content

Commit 3d40bb3

Browse files
committed
Fix spelling in comments
1 parent e7ab51e commit 3d40bb3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/test/java/org/apache/commons/text/StrBuilderTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1894,7 +1894,7 @@ void testSubSequenceIntInt() {
18941894
// End index greater than length()
18951895
assertThrows(IndexOutOfBoundsException.class, () -> sb.subSequence(2, sb.length() + 1));
18961896

1897-
// Start index greater then end index
1897+
// Start index greater than end index
18981898
assertThrows(IndexOutOfBoundsException.class, () -> sb.subSequence(3, 2));
18991899

19001900
// Normal cases

src/test/java/org/apache/commons/text/TextStringBuilderTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2190,7 +2190,7 @@ void testSubSequenceIntInt() {
21902190
// End index greater than length()
21912191
assertThrows(IndexOutOfBoundsException.class, () -> sb.subSequence(2, sb.length() + 1));
21922192

2193-
// Start index greater then end index
2193+
// Start index greater than end index
21942194
assertThrows(IndexOutOfBoundsException.class, () -> sb.subSequence(3, 2));
21952195

21962196
// Normal cases

0 commit comments

Comments
 (0)