This is an automated email from the ASF dual-hosted git repository.
ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-text.git
The following commit(s) were added to refs/heads/master by this push:
new 3d40bb37 Fix spelling in comments
3d40bb37 is described below
commit 3d40bb3765f3f9838de4fe0321325d0438affae1
Author: Gary Gregory <[email protected]>
AuthorDate: Tue Dec 9 10:12:23 2025 -0500
Fix spelling in comments
---
src/test/java/org/apache/commons/text/StrBuilderTest.java | 2 +-
src/test/java/org/apache/commons/text/TextStringBuilderTest.java | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/test/java/org/apache/commons/text/StrBuilderTest.java
b/src/test/java/org/apache/commons/text/StrBuilderTest.java
index 338768f4..c27cf469 100644
--- a/src/test/java/org/apache/commons/text/StrBuilderTest.java
+++ b/src/test/java/org/apache/commons/text/StrBuilderTest.java
@@ -1894,7 +1894,7 @@ class StrBuilderTest {
// End index greater than length()
assertThrows(IndexOutOfBoundsException.class, () -> sb.subSequence(2,
sb.length() + 1));
- // Start index greater then end index
+ // Start index greater than end index
assertThrows(IndexOutOfBoundsException.class, () -> sb.subSequence(3,
2));
// Normal cases
diff --git a/src/test/java/org/apache/commons/text/TextStringBuilderTest.java
b/src/test/java/org/apache/commons/text/TextStringBuilderTest.java
index 3317543f..ff2cc7d0 100644
--- a/src/test/java/org/apache/commons/text/TextStringBuilderTest.java
+++ b/src/test/java/org/apache/commons/text/TextStringBuilderTest.java
@@ -2190,7 +2190,7 @@ class TextStringBuilderTest {
// End index greater than length()
assertThrows(IndexOutOfBoundsException.class, () -> sb.subSequence(2,
sb.length() + 1));
- // Start index greater then end index
+ // Start index greater than end index
assertThrows(IndexOutOfBoundsException.class, () -> sb.subSequence(3,
2));
// Normal cases