git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@619157 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Matthew Jason Benson 2008-02-06 21:24:46 +00:00
parent 11fc6950e9
commit 2e8e3f46ba
1 changed files with 5 additions and 5 deletions

View File

@ -3340,7 +3340,7 @@ public static String removeEndIgnoreCase(String str, String remove) {
}
/**
* <p>Removes all occurences of a substring from within the source string.</p>
* <p>Removes all occurrences of a substring from within the source string.</p>
*
* <p>A <code>null</code> source string will return <code>null</code>.
* An empty ("") source string will return the empty string.
@ -3370,7 +3370,7 @@ public static String remove(String str, String remove) {
}
/**
* <p>Removes all occurences of a character from within the source string.</p>
* <p>Removes all occurrences of a character from within the source string.</p>
*
* <p>A <code>null</code> source string will return <code>null</code>.
* An empty ("") source string will return the empty string.</p>
@ -3514,7 +3514,7 @@ public static String replace(String text, String repl, String with, int max) {
/**
* <p>
* Replaces all occurences of Strings within another String.
* Replaces all occurrences of Strings within another String.
* </p>
*
* <p>
@ -3557,7 +3557,7 @@ public static String replaceEach(String text, String[] repl, String[] with) {
/**
* <p>
* Replaces all occurences of Strings within another String.
* Replaces all occurrences of Strings within another String.
* </p>
*
* <p>
@ -3609,7 +3609,7 @@ public static String replaceEachRepeatedly(String text, String[] repl, String[]
/**
* <p>
* Replaces all occurences of Strings within another String.
* Replaces all occurrences of Strings within another String.
* </p>
*
* <p>