You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2020/11/21 16:54:04 UTC

[commons-validator] branch master updated: Fix Javadoc on Java 8 and up.

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 247c5d2  Fix Javadoc on Java 8 and up.
247c5d2 is described below

commit 247c5d27cf79ae919a9affde37dd3eb3e2ea0058
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sat Nov 21 11:54:00 2020 -0500

    Fix Javadoc on Java 8 and up.
---
 .../org/apache/commons/validator/routines/IBANValidator.java   | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/src/main/java/org/apache/commons/validator/routines/IBANValidator.java b/src/main/java/org/apache/commons/validator/routines/IBANValidator.java
index d95be7e..2f4bc02 100644
--- a/src/main/java/org/apache/commons/validator/routines/IBANValidator.java
+++ b/src/main/java/org/apache/commons/validator/routines/IBANValidator.java
@@ -27,21 +27,23 @@ import org.apache.commons.validator.routines.checkdigit.IBANCheckDigit;
  * <p>
  * The validator includes a default set of formats derived from the IBAN registry at
  * https://www.swift.com/standards/data-standards/iban.
+ * </p>
  * <p>
  * This can get out of date, but the set can be adjusted by creating a validator and using the
  * {@link #setValidator(String, int, String)} or 
  * {@link #setValidator(Validator)}
  * method to add (or remove) an entry.
+ * </p>
  * <p>
  * For example:
- * <p>
- * <code>
+ * </p>
+ * <pre>
  * IBANValidator ibv = new IBANValidator();
- * <p>
  * ibv.setValidator("XX", 12, "XX\\d{10}")
- * </code>
+ * </pre>
  * <p>
  * The singleton default instance cannot be modifed in this way.
+ * </p>
  * @since 1.5.0
  */
 public class IBANValidator {