< prev index next >

src/java.base/share/classes/java/net/HttpCookie.java

Print this page

        

@@ -664,11 +664,11 @@
         }
 
         int domainLength = domain.length();
         int lengthDiff = host.length() - domainLength;
         if (lengthDiff == 0) {
-            // if the host name and the domain name are just string-compare euqal
+            // if the host name and the domain name are just string-compare equal
             return host.equalsIgnoreCase(domain);
         }
         else if (lengthDiff > 0) {
             // need to check H & D component
             String H = host.substring(0, lengthDiff);

@@ -1129,11 +1129,11 @@
 
     /*
      * Split cookie header string according to rfc 2965:
      *   1) split where it is a comma;
      *   2) but not the comma surrounding by double-quotes, which is the comma
-     *      inside port list or embeded URIs.
+     *      inside port list or embedded URIs.
      *
      * @param  header
      *         the cookie header string to split
      *
      * @return  list of strings; never null
< prev index next >