diff --git a/src/java/org/apache/commons/lang/StringUtils.java b/src/java/org/apache/commons/lang/StringUtils.java index 160c9b34b..7b5ff20ff 100644 --- a/src/java/org/apache/commons/lang/StringUtils.java +++ b/src/java/org/apache/commons/lang/StringUtils.java @@ -3351,7 +3351,7 @@ public class StringUtils { } /** - *
Removes all occurances of a substring from within the source string.
+ *Removes all occurences of a substring from within the source string.
* *A null
source string will return null
.
* An empty ("") source string will return the empty string.
@@ -3381,7 +3381,7 @@ public class StringUtils {
}
/**
- *
Removes all occurances of a character from within the source string.
+ *Removes all occurences of a character from within the source string.
* *A null
source string will return null
.
* An empty ("") source string will return the empty string.
- * Replaces all occurances of Strings within another String. + * Replaces all occurences of Strings within another String. *
* *
* A null
reference passed to this method is a no-op, or if
* any "search string" or "string to replace" is null, that replace will be
- * ignored. This will not repeat, for repeating replaces, call the
+ * ignored. This will not repeat. For repeating replaces, call the
* overloaded method.
*
- * Replaces all occurances of Strings within another String. + * Replaces all occurences of Strings within another String. *
* *
* A null
reference passed to this method is a no-op, or if
* any "search string" or "string to replace" is null, that replace will be
- * ignored. This will not repeat, for repeating replaces, call the
+ * ignored. This will not repeat. For repeating replaces, call the
* overloaded method.
*
- * Replaces all occurances of Strings within another String. + * Replaces all occurences of Strings within another String. *
* *