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-lang.git


The following commit(s) were added to refs/heads/master by this push:
     new 58bf1c2fa Fix spelling in comments
58bf1c2fa is described below

commit 58bf1c2faf500c8dc59fd1cc224f44ffb5349bc9
Author: Gary Gregory <[email protected]>
AuthorDate: Tue Dec 9 10:14:24 2025 -0500

    Fix spelling in comments
---
 src/test/java/org/apache/commons/lang3/text/StrBuilderTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/test/java/org/apache/commons/lang3/text/StrBuilderTest.java 
b/src/test/java/org/apache/commons/lang3/text/StrBuilderTest.java
index 982ff149f..04ef83eed 100644
--- a/src/test/java/org/apache/commons/lang3/text/StrBuilderTest.java
+++ b/src/test/java/org/apache/commons/lang3/text/StrBuilderTest.java
@@ -1700,7 +1700,7 @@ void testSubSequenceIntInt() {
         // End index greater than length()
         assertIndexOutOfBoundsException(() -> sb.subSequence(2, sb.length() + 
1));
 
-        // Start index greater then end index
+        // Start index greater than end index
         assertIndexOutOfBoundsException(() -> sb.subSequence(3, 2));
 
         // Normal cases

Reply via email to