This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-validator.git


The following commit(s) were added to refs/heads/master by this push:
     new 2896eeef Javadoc
     new 8f4a0d60 Merge branch 'master' of 
https://gitbox.apache.org/repos/asf/commons-validator
2896eeef is described below

commit 2896eeefb02e1f78fcaa889079f20be1278702e4
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Sun Dec 17 14:41:38 2023 -0500

    Javadoc
---
 src/main/java/org/apache/commons/validator/GenericTypeValidator.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/src/main/java/org/apache/commons/validator/GenericTypeValidator.java 
b/src/main/java/org/apache/commons/validator/GenericTypeValidator.java
index 7d5d7d26..900fb96a 100644
--- a/src/main/java/org/apache/commons/validator/GenericTypeValidator.java
+++ b/src/main/java/org/apache/commons/validator/GenericTypeValidator.java
@@ -106,7 +106,7 @@ public class GenericTypeValidator implements Serializable {
     /**
      * Checks if the field is a valid date.
      *
-     * <p>The {@code Locale} is used with {@code java.text.DateFormat}. The 
{@link java.text.DateFormat#setLenient(boolean)}
+     * <p>The {@code Locale} is used with {@link java.text.DateFormat}. The 
{@link java.text.DateFormat#setLenient(boolean)}
      * method is set to {@code false} for all.
      * </p>
      *
@@ -166,7 +166,7 @@ public class GenericTypeValidator implements Serializable {
     /**
      * Checks if the field is a valid date.
      *
-     * <p>The pattern is used with {@code java.text.SimpleDateFormat}.
+     * <p>The pattern is used with {@link java.text.SimpleDateFormat}.
      * If strict is true, then the length will be checked so '2/12/1999' will
      * not pass validation with the format 'MM/dd/yyyy' because the month isn't
      * two digits. The {@link java.text.SimpleDateFormat#setLenient(boolean)}

Reply via email to