Skip to content

Commit

Permalink
Javadoc: Use semantic tag <em> instead of style tag <i>
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Nov 15, 2024
1 parent 74d091f commit d73b8bb
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ public RegexValidator(final String... regexs) {
* Constructs a new instance for a single regular expression with the specified case sensitivity.
*
* @param regex The regular expression this validator will validate against
* @param caseSensitive when {@code true} matching is <i>case sensitive</i>, otherwise matching is <em>case in-sensitive</em>
* @param caseSensitive when {@code true} matching is <em>case sensitive</em>, otherwise matching is <em>case in-sensitive</em>
*/
public RegexValidator(final String regex, final boolean caseSensitive) {
this(toCompileFlags(caseSensitive), regex);
Expand All @@ -141,7 +141,7 @@ public RegexValidator(final String regex, final boolean caseSensitive) {
* 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 caseSensitive when {@code true} matching is <i>case sensitive</i>, otherwise matching is <em>case in-sensitive</em>
* @param caseSensitive when {@code true} matching is <em>case sensitive</em>, otherwise matching is <em>case in-sensitive</em>
*/
public RegexValidator(final String[] regexs, final boolean caseSensitive) {
this(toCompileFlags(caseSensitive), regexs);
Expand Down

0 comments on commit d73b8bb

Please sign in to comment.