From 6699e44845db2c4cb279041c4e7d35da0102d81d Mon Sep 17 00:00:00 2001 From: Sebastian Bazley Date: Tue, 2 Mar 2010 23:01:54 +0000 Subject: [PATCH] Javadoc fixes git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@918240 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/java/org/apache/commons/lang3/Validate.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/org/apache/commons/lang3/Validate.java b/src/main/java/org/apache/commons/lang3/Validate.java index bb0a1101a..02a9bf7b8 100644 --- a/src/main/java/org/apache/commons/lang3/Validate.java +++ b/src/main/java/org/apache/commons/lang3/Validate.java @@ -818,9 +818,9 @@ public class Validate { * @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 @@ public class Validate { * @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 @@ public class Validate { * @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) */