You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2010/01/14 17:03:56 UTC

svn commit: r899260 - /commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/StringUtils.java

Author: sebb
Date: Thu Jan 14 16:03:56 2010
New Revision: 899260

URL: http://svn.apache.org/viewvc?rev=899260&view=rev
Log:
Fix paste typos

Modified:
    commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/StringUtils.java

Modified: commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/StringUtils.java
URL: http://svn.apache.org/viewvc/commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/StringUtils.java?rev=899260&r1=899259&r2=899260&view=diff
==============================================================================
--- commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/StringUtils.java (original)
+++ commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/StringUtils.java Thu Jan 14 16:03:56 2010
@@ -3473,13 +3473,13 @@
      * 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>