This is an automated email from the ASF dual-hosted git repository.
garydgregory 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 3e111f128 Javadoc
3e111f128 is described below
commit 3e111f128a1f5a2f1e7df78c5cd6e8206eada959
Author: Gary Gregory <[email protected]>
AuthorDate: Sat Jun 13 15:25:51 2026 +0000
Javadoc
---
src/main/java/org/apache/commons/lang3/StringUtils.java | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/main/java/org/apache/commons/lang3/StringUtils.java
b/src/main/java/org/apache/commons/lang3/StringUtils.java
index cff2e3c64..eb9115dd1 100644
--- a/src/main/java/org/apache/commons/lang3/StringUtils.java
+++ b/src/main/java/org/apache/commons/lang3/StringUtils.java
@@ -3055,7 +3055,7 @@ public static int indexOfDifference(final CharSequence
cs1, final CharSequence c
}
/**
- * Case in-sensitive find of the first index within a CharSequence.
+ * Case insensitive find of the first index within a CharSequence.
*
* <p>
* A {@code null} CharSequence will return {@code -1}. A negative start
position is treated as zero. An empty ("") search CharSequence always matches. A
@@ -3085,7 +3085,7 @@ public static int indexOfIgnoreCase(final CharSequence
str, final CharSequence s
}
/**
- * Case in-sensitive find of the first index within a CharSequence from
the specified position.
+ * Case insensitive find of the first index within a CharSequence from the
specified position.
*
* <p>
* A {@code null} CharSequence will return {@code -1}. A negative start
position is treated as zero. An empty ("") search CharSequence always matches. A
@@ -4973,7 +4973,7 @@ public static int lastIndexOfAny(final CharSequence str,
final CharSequence... s
}
/**
- * Case in-sensitive find of the last index within a CharSequence.
+ * Case insensitive find of the last index within a CharSequence.
*
* <p>
* A {@code null} CharSequence will return {@code -1}. A negative start
position returns {@code -1}. An empty ("") search CharSequence always matches
unless
@@ -5001,7 +5001,7 @@ public static int lastIndexOfIgnoreCase(final
CharSequence str, final CharSequen
}
/**
- * Case in-sensitive find of the last index within a CharSequence from the
specified position.
+ * Case insensitive find of the last index within a CharSequence from the
specified position.
*
* <p>
* A {@code null} CharSequence will return {@code -1}. A negative start
position returns {@code -1}. An empty ("") search CharSequence always matches
unless