You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2014/12/31 01:23:37 UTC

svn commit: r1648634 - /commons/proper/validator/trunk/src/main/java/org/apache/commons/validator/routines/DomainValidator.java

Author: sebb
Date: Wed Dec 31 00:23:37 2014
New Revision: 1648634

URL: http://svn.apache.org/r1648634
Log:
Typos

Modified:
    commons/proper/validator/trunk/src/main/java/org/apache/commons/validator/routines/DomainValidator.java

Modified: commons/proper/validator/trunk/src/main/java/org/apache/commons/validator/routines/DomainValidator.java
URL: http://svn.apache.org/viewvc/commons/proper/validator/trunk/src/main/java/org/apache/commons/validator/routines/DomainValidator.java?rev=1648634&r1=1648633&r2=1648634&view=diff
==============================================================================
--- commons/proper/validator/trunk/src/main/java/org/apache/commons/validator/routines/DomainValidator.java (original)
+++ commons/proper/validator/trunk/src/main/java/org/apache/commons/validator/routines/DomainValidator.java Wed Dec 31 00:23:37 2014
@@ -124,7 +124,7 @@ public class DomainValidator implements
     /**
      * Returns true if the specified <code>String</code> parses
      * as a valid domain name with a recognized top-level domain.
-     * The parsing is case-sensitive.
+     * The parsing is case-insensitive.
      * @param domain the parameter to check for domain name syntax
      * @return true if the parameter is a valid domain name
      */
@@ -139,7 +139,7 @@ public class DomainValidator implements
     /**
      * Returns true if the specified <code>String</code> matches any
      * IANA-defined top-level domain. Leading dots are ignored if present.
-     * The search is case-sensitive.
+     * The search is case-insensitive.
      * @param tld the parameter to check for TLD status
      * @return true if the parameter is a TLD
      */
@@ -155,7 +155,7 @@ public class DomainValidator implements
     /**
      * Returns true if the specified <code>String</code> matches any
      * IANA-defined infrastructure top-level domain. Leading dots are
-     * ignored if present. The search is case-sensitive.
+     * ignored if present. The search is case-insensitive.
      * @param iTld the parameter to check for infrastructure TLD status
      * @return true if the parameter is an infrastructure TLD
      */
@@ -166,7 +166,7 @@ public class DomainValidator implements
     /**
      * Returns true if the specified <code>String</code> matches any
      * IANA-defined generic top-level domain. Leading dots are ignored
-     * if present. The search is case-sensitive.
+     * if present. The search is case-insensitive.
      * @param gTld the parameter to check for generic TLD status
      * @return true if the parameter is a generic TLD
      */
@@ -177,7 +177,7 @@ public class DomainValidator implements
     /**
      * Returns true if the specified <code>String</code> matches any
      * IANA-defined country code top-level domain. Leading dots are
-     * ignored if present. The search is case-sensitive.
+     * ignored if present. The search is case-insensitive.
      * @param ccTld the parameter to check for country code TLD status
      * @return true if the parameter is a country code TLD
      */