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
commit 6778de804390a95e7e788717b2cfbdf2c381e0ff Author: Gary Gregory <[email protected]> AuthorDate: Tue Apr 7 13:03:22 2026 -0400 Fix broken Javadoc HTML tags --- src/main/java/org/apache/commons/validator/routines/RegexValidator.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/validator/routines/RegexValidator.java b/src/main/java/org/apache/commons/validator/routines/RegexValidator.java index 84f65dfe..ecef5e1a 100644 --- a/src/main/java/org/apache/commons/validator/routines/RegexValidator.java +++ b/src/main/java/org/apache/commons/validator/routines/RegexValidator.java @@ -84,7 +84,7 @@ public class RegexValidator implements Serializable { * Constructs a new instance that matches any one of the set of regular expressions with the specified case sensitivity. * * @param regexs The set of regular expressions this validator will validate against - * @param flags See {@link Pattern#compile(String, int)}. sensitive</i>, otherwise matching is <em>case in-sensitive</em> + * @param flags See flags in {@link Pattern#compile(String, int)}. */ private RegexValidator(final int flags, final String... regexs) { if (regexs == null || regexs.length == 0) {
