This is an automated email from the ASF dual-hosted git repository.

garydgregory 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 91ef7152 Javadoc
91ef7152 is described below

commit 91ef71525d6e0616380396979d698ef5f7cb4b66
Author: Gary Gregory <[email protected]>
AuthorDate: Sat Jun 20 12:25:02 2026 +0000

    Javadoc
---
 .../commons/validator/routines/InetAddressValidator.java     | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git 
a/src/main/java/org/apache/commons/validator/routines/InetAddressValidator.java 
b/src/main/java/org/apache/commons/validator/routines/InetAddressValidator.java
index 29124da1..ec9dd830 100644
--- 
a/src/main/java/org/apache/commons/validator/routines/InetAddressValidator.java
+++ 
b/src/main/java/org/apache/commons/validator/routines/InetAddressValidator.java
@@ -26,10 +26,10 @@ import java.util.regex.Pattern;
 import org.apache.commons.validator.GenericValidator;
 
 /**
- * <strong>InetAddress</strong> validation and conversion routines ({@code 
java.net.InetAddress}).
- *
- * <p>This class provides methods to validate a candidate IP address.
- *
+ * Validates and converts IP addresses ({@code java.net.InetAddress}).
+ * <p>
+ * This class provides methods to validate a candidate IP address.
+ * </p>
  * <p>
  * This class is a Singleton; you can retrieve the instance via the {@link 
#getInstance()} method.
  * </p>
@@ -69,7 +69,7 @@ public class InetAddressValidator implements Serializable {
     private static final RegexValidator IPV4_VALIDATOR = new 
RegexValidator(IPV4_REGEX);
 
     /**
-     * Returns the singleton instance of this validator.
+     * Gets the singleton instance of this validator.
      *
      * @return the singleton instance of this validator
      */
@@ -85,7 +85,7 @@ public class InetAddressValidator implements Serializable {
     }
 
     /**
-     * Checks if the specified string is a valid IPv4 or IPv6 address.
+     * Tests if the specified string is a valid IPv4 or IPv6 address.
      *
      * @param inetAddress the string to validate
      * @return true if the string validates as an IP address

Reply via email to