Fix paste typos

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@899260 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2010-01-14 16:03:56 +00:00
parent b88699d65f
commit ab20f86381
1 changed files with 7 additions and 7 deletions

View File

@ -3473,13 +3473,13 @@ public class StringUtils {
* A <code>null</code> search string will return the source string.</p>
*
* <pre>
* StringUtils.removeEndEndIgnoreCase(null, *) = null
* StringUtils.removeEndEndIgnoreCase("", *) = ""
* StringUtils.removeEndEndIgnoreCase(*, null) = *
* StringUtils.removeEndEndIgnoreCase("www.domain.com", ".com.") = "www.domain.com"
* StringUtils.removeEndEndIgnoreCase("www.domain.com", ".com") = "www.domain"
* StringUtils.removeEndEndIgnoreCase("www.domain.com", "domain") = "www.domain.com"
* StringUtils.removeEndEndIgnoreCase("abc", "") = "abc"
* StringUtils.removeEndIgnoreCase(null, *) = null
* StringUtils.removeEndIgnoreCase("", *) = ""
* StringUtils.removeEndIgnoreCase(*, null) = *
* StringUtils.removeEndIgnoreCase("www.domain.com", ".com.") = "www.domain.com"
* StringUtils.removeEndIgnoreCase("www.domain.com", ".com") = "www.domain"
* StringUtils.removeEndIgnoreCase("www.domain.com", "domain") = "www.domain.com"
* StringUtils.removeEndIgnoreCase("abc", "") = "abc"
* StringUtils.removeEndIgnoreCase("www.domain.com", ".COM") = "www.domain")
* StringUtils.removeEndIgnoreCase("www.domain.COM", ".com") = "www.domain")
* </pre>