Removed the unnecessary 'A' from join's char separator javadocs.

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@137406 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Henri Yandell 2003-07-09 23:54:16 +00:00
parent d5c3e4d3fe
commit 1f09b46037
1 changed files with 3 additions and 3 deletions

View File

@ -79,7 +79,7 @@ import org.apache.commons.lang.math.NumberUtils;
* @author Arun Mammen Thomas * @author Arun Mammen Thomas
* @author <a href="mailto:ggregory@seagullsw.com">Gary Gregory</a> * @author <a href="mailto:ggregory@seagullsw.com">Gary Gregory</a>
* @since 1.0 * @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 { public class StringUtils {
@ -652,7 +652,7 @@ public class StringUtils {
* <p>Joins the elements of the provided array into a single String * <p>Joins the elements of the provided array into a single String
* containing the provided list of elements.</p> * containing the provided list of elements.</p>
* *
* <p>No delimiter is added before or after the list. A * <p>No delimiter is added before or after the list.
* *
* @param array the array of values to join together * @param array the array of values to join together
* @param separator the separator character to use * @param separator the separator character to use
@ -698,7 +698,7 @@ public class StringUtils {
* <p>Joins the elements of the provided <code>Iterator</code> into * <p>Joins the elements of the provided <code>Iterator</code> into
* a single String containing the provided elements.</p> * a single String containing the provided elements.</p>
* *
* <p>No delimiter is added before or after the list. A * <p>No delimiter is added before or after the list.
* *
* @param iterator the <code>Iterator</code> of values to join together * @param iterator the <code>Iterator</code> of values to join together
* @param separator the separator character to use * @param separator the separator character to use