diff --git a/src/main/java/org/apache/commons/validator/Form.java b/src/main/java/org/apache/commons/validator/Form.java
index f7a197a59..372392120 100644
--- a/src/main/java/org/apache/commons/validator/Form.java
+++ b/src/main/java/org/apache/commons/validator/Form.java
@@ -325,7 +325,7 @@ public void setExtends(final String inherit) {
}
/**
- * Get extends flag.
+ * Gets extends flag.
*
* @return The extending value
* @since 1.2.0
diff --git a/src/main/java/org/apache/commons/validator/ValidatorResources.java b/src/main/java/org/apache/commons/validator/ValidatorResources.java
index a346005c5..ed9a72896 100644
--- a/src/main/java/org/apache/commons/validator/ValidatorResources.java
+++ b/src/main/java/org/apache/commons/validator/ValidatorResources.java
@@ -367,7 +367,7 @@ public void addValidatorAction(final ValidatorAction va) {
}
/**
- * Get a ValidatorAction
based on it's name.
+ * Gets a ValidatorAction
based on it's name.
* @param key The validator action key.
* @return The validator action.
*/
@@ -376,7 +376,7 @@ public ValidatorAction getValidatorAction(final String key) {
}
/**
- * Get an unmodifiable Map
of the ValidatorAction
s.
+ * Gets an unmodifiable Map
of the ValidatorAction
s.
* @return Map of validator actions.
*/
public Map getValidatorActions() {
diff --git a/src/main/java/org/apache/commons/validator/ValidatorResults.java b/src/main/java/org/apache/commons/validator/ValidatorResults.java
index 28fe66f62..99df3f505 100644
--- a/src/main/java/org/apache/commons/validator/ValidatorResults.java
+++ b/src/main/java/org/apache/commons/validator/ValidatorResults.java
@@ -122,7 +122,7 @@ public Set getPropertyNames() {
}
/**
- * Get a Map
of any Object
s returned from
+ * Gets a Map
of any Object
s returned from
* validation routines.
*
* @return Map of objections returned by validators.
diff --git a/src/main/java/org/apache/commons/validator/routines/DomainValidator.java b/src/main/java/org/apache/commons/validator/routines/DomainValidator.java
index 1b3063769..72d6c28be 100644
--- a/src/main/java/org/apache/commons/validator/routines/DomainValidator.java
+++ b/src/main/java/org/apache/commons/validator/routines/DomainValidator.java
@@ -2054,13 +2054,13 @@ public enum ArrayType {
COUNTRY_CODE_PLUS,
/** Update (or get a copy of) the COUNTRY_CODE_TLDS_MINUS table containing deleted country code TLDs */
COUNTRY_CODE_MINUS,
- /** Get a copy of the generic TLDS table */
+ /** Gets a copy of the generic TLDS table */
GENERIC_RO,
- /** Get a copy of the country code table */
+ /** Gets a copy of the country code table */
COUNTRY_CODE_RO,
- /** Get a copy of the infrastructure table */
+ /** Gets a copy of the infrastructure table */
INFRASTRUCTURE_RO,
- /** Get a copy of the local table */
+ /** Gets a copy of the local table */
LOCAL_RO,
/**
* Update (or get a copy of) the LOCAL_TLDS_PLUS table containing additional local TLDs
@@ -2159,7 +2159,7 @@ public static synchronized void updateTLDOverride(final ArrayType table, final S
}
/**
- * Get a copy of a class level internal array.
+ * Gets a copy of a class level internal array.
* @param table the array type (any of the enum values)
* @return a copy of the array
* @throws IllegalArgumentException if the table type is unexpected (should not happen)
@@ -2205,7 +2205,7 @@ public static synchronized void updateTLDOverride(final ArrayType table, final S
}
/**
- * Get a copy of an instance level internal array.
+ * Gets a copy of an instance level internal array.
* @param table the array type (any of the enum values)
* @return a copy of the array
* @throws IllegalArgumentException if the table type is unexpected, e.g. GENERIC_RO
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 c9b49c7ac..a2ee4d0c1 100644
--- a/src/main/java/org/apache/commons/validator/routines/IBANValidator.java
+++ b/src/main/java/org/apache/commons/validator/routines/IBANValidator.java
@@ -310,7 +310,7 @@ public Validator[] getDefaultValidators() {
}
/**
- * Get the Validator for a given IBAN
+ * Gets the Validator for a given IBAN
*
* @param code a string starting with the ISO country code (e.g. an IBAN)
*