diff --git a/src/main/java/org/apache/commons/lang3/StringUtils.java b/src/main/java/org/apache/commons/lang3/StringUtils.java index e74ccefad..a585c2eb3 100644 --- a/src/main/java/org/apache/commons/lang3/StringUtils.java +++ b/src/main/java/org/apache/commons/lang3/StringUtils.java @@ -38,17 +38,17 @@ import java.util.regex.Pattern; *
Methods in this class give sample code to explain their operation. + *
Methods in this class include sample code in their Javadoc comments to explain their operation. * The symbol {@code *} is used to indicate any input including {@code null}.
* *#ThreadSafe#
@@ -564,7 +564,7 @@ public class StringUtils { *Centers a String in a larger String of size {@code size} * using the space character (' ').
* - *If the size is less than the String length, the String is returned. + *
If the size is less than the String length, the original String is returned. * A {@code null} String returns {@code null}. * A negative size is treated as zero.
* @@ -5015,7 +5015,7 @@ public class StringUtils { } /** - *Find the latest index of any of a set of potential substrings.
+ *Find the latest index of any substring in a set of potential substrings.
* *A {@code null} CharSequence will return {@code -1}. * A {@code null} search array will return {@code -1}. @@ -6386,7 +6386,7 @@ public class StringUtils { /** *
Replaces a String with another String inside a larger String, * for the first {@code max} values of the search String, - * case sensitively/insensisitively based on {@code ignoreCase} value.
+ * case sensitively/insensitively based on {@code ignoreCase} value. * *A {@code null} reference passed to this method is a no-op.
*