Author: sebb
Date: Tue Mar 2 23:01:54 2010
New Revision: 918240
URL: http://svn.apache.org/viewvc?rev=918240&view=rev
Log:
Javadoc fixes
Modified:
commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/Validate.java
Modified:
commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/Validate.java
URL:
http://svn.apache.org/viewvc/commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/Validate.java?rev=918240&r1=918239&r2=918240&view=diff
==============================================================================
---
commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/Validate.java
(original)
+++
commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/Validate.java
Tue Mar 2 23:01:54 2010
@@ -818,9 +818,9 @@
* @param input the character sequence to validate
* @param pattern regular expression pattern
* @param message the exception message
- * @param optional values to replace in the exception message
+ * @param values (optional) values to replace in the exception message
* @throws IllegalArgumentException if the character sequence does not
match the pattern
- * @see #matchesPattern(String, String)
+ * @see #matchesPattern(CharSequence, String)
*/
public static void matchesPattern(CharSequence input, String pattern,
String message, Object... values)
{
@@ -861,7 +861,7 @@
* @param start the inclusive start value
* @param end the inclusive end value
* @param message the exception message
- * @param optional values to replace in the exception message
+ * @param values to replace in the exception message (optional)
* @throws IllegalArgumentException if the value falls out of the
boundaries
* @see #inclusiveBetween(Object, Object, Comparable)
*/
@@ -904,7 +904,7 @@
* @param start the exclusive start value
* @param end the exclusive end value
* @param message the exception message
- * @param optional values to replace in the exception message
+ * @param values to replace in the exception message (optional)
* @throws IllegalArgumentException if the value falls out of the
boundaries
* @see #exclusiveBetween(Object, Object, Comparable)
*/