Author: bayard
Date: Mon Apr  5 08:00:34 2010
New Revision: 930819

URL: http://svn.apache.org/viewvc?rev=930819&view=rev
Log:
Adding missing javadoc

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=930819&r1=930818&r2=930819&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
 Mon Apr  5 08:00:34 2010
@@ -3094,9 +3094,10 @@ public class StringUtils {
     }
 
     /**
-     * <p>Joins the provided elements into a single String. </p>
+     * <p>Joins the provided elements into a single String, with the specified 
+     * separator between each element. </p>
      *
-     * <p>No separator is added to the joined String.
+     * <p>No separator is added before or after the joined String.
      * Null objects or empty string elements are represented by
      * empty strings.</p>
      *
@@ -3105,6 +3106,7 @@ public class StringUtils {
      * StringUtils.concatWith("", null, "", "a") = "a"
      * </pre>
      *
+     * @param separator the value to put between elements
      * @param elements  the values to join together
      * @return the concatenated String
      * @since 3.0


Reply via email to