You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ni...@apache.org on 2010/01/21 19:27:09 UTC

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

Author: niallp
Date: Thu Jan 21 18:27:09 2010
New Revision: 901817

URL: http://svn.apache.org/viewvc?rev=901817&view=rev
Log:
Javadoc correction: truncation -> abbreviation

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=901817&r1=901816&r2=901817&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 21 18:27:09 2010
@@ -5522,7 +5522,7 @@
      * <li>The length to truncate to is less than the length of the supplied String</li>
      * <li>The length to truncate to is greater than 0</li>
      * <li>The abbreviated String will have enough room for the length supplied replacement String
-     * and the first and last characters of the supplied String for truncation</li>
+     * and the first and last characters of the supplied String for abbreviation</li>
      * </ul>
      * Otherwise, the returned String will be the same as the supplied String for abbreviation.
      * </p>