diff --git a/src/java/org/apache/commons/lang/StringUtils.java b/src/java/org/apache/commons/lang/StringUtils.java index e5a77c6a4..303ff1da5 100644 --- a/src/java/org/apache/commons/lang/StringUtils.java +++ b/src/java/org/apache/commons/lang/StringUtils.java @@ -79,7 +79,7 @@ import org.apache.commons.lang.math.NumberUtils; * @author Arun Mammen Thomas * @author Gary Gregory * @since 1.0 - * @version $Id: StringUtils.java,v 1.52 2003/07/08 05:59:58 bayard Exp $ + * @version $Id: StringUtils.java,v 1.53 2003/07/09 23:54:16 bayard Exp $ */ public class StringUtils { @@ -652,7 +652,7 @@ public class StringUtils { *

Joins the elements of the provided array into a single String * containing the provided list of elements.

* - *

No delimiter is added before or after the list. A + *

No delimiter is added before or after the list. * * @param array the array of values to join together * @param separator the separator character to use @@ -698,7 +698,7 @@ public class StringUtils { *

Joins the elements of the provided Iterator into * a single String containing the provided elements.

* - *

No delimiter is added before or after the list. A + *

No delimiter is added before or after the list. * * @param iterator the Iterator of values to join together * @param separator the separator character to use