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 2023/01/16 16:02:21 UTC

[commons-validator] branch master updated: Fix spelling

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 0c541876 Fix spelling
0c541876 is described below

commit 0c541876679b42990652203d0e1a3226af695d02
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Mon Jan 16 11:02:17 2023 -0500

    Fix spelling
---
 .../java/org/apache/commons/validator/routines/IBANValidator.java     | 2 +-
 src/main/java/org/apache/commons/validator/routines/UrlValidator.java | 4 ++--
 2 files changed, 3 insertions(+), 3 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 986cf151..55d40c89 100644
--- a/src/main/java/org/apache/commons/validator/routines/IBANValidator.java
+++ b/src/main/java/org/apache/commons/validator/routines/IBANValidator.java
@@ -42,7 +42,7 @@ import org.apache.commons.validator.routines.checkdigit.IBANCheckDigit;
  * ibv.setValidator("XX", 12, "XX\\d{10}")
  * </pre>
  * <p>
- * The singleton default instance cannot be modifed in this way.
+ * The singleton default instance cannot be modified in this way.
  * </p>
  * @since 1.5.0
  */
diff --git a/src/main/java/org/apache/commons/validator/routines/UrlValidator.java b/src/main/java/org/apache/commons/validator/routines/UrlValidator.java
index c038e9a6..9b0258db 100644
--- a/src/main/java/org/apache/commons/validator/routines/UrlValidator.java
+++ b/src/main/java/org/apache/commons/validator/routines/UrlValidator.java
@@ -237,7 +237,7 @@ public class UrlValidator implements Serializable {
     }
 
     /**
-     * Customizable constructor. Validation behavior is modifed by passing in options.
+     * Customizable constructor. Validation behavior is modified by passing in options.
      * @param schemes the set of valid schemes. Ignored if the ALLOW_ALL_SCHEMES option is set.
      * @param authorityValidator Regular expression validator used to validate the authority part
      * @param options Validation options. Set using the public constants of this class.
@@ -250,7 +250,7 @@ public class UrlValidator implements Serializable {
     }
 
     /**
-     * Customizable constructor. Validation behavior is modifed by passing in options.
+     * Customizable constructor. Validation behavior is modified by passing in options.
      * @param schemes the set of valid schemes. Ignored if the ALLOW_ALL_SCHEMES option is set.
      * @param authorityValidator Regular expression validator used to validate the authority part
      * @param options Validation options. Set using the public constants of this class.