CVS 2002/css-validator/org/w3c/css/parser

Update of /sources/public/2002/css-validator/org/w3c/css/parser
In directory roscoe:/tmp/cvs-serv26043

Modified Files:
	CssSelectors.java 
Log Message:
typos

--- /sources/public/2002/css-validator/org/w3c/css/parser/CssSelectors.java	2013/02/13 14:54:29	1.38
+++ /sources/public/2002/css-validator/org/w3c/css/parser/CssSelectors.java	2013/06/12 09:52:25	1.39
@@ -1,5 +1,5 @@
 //
-// $Id: CssSelectors.java,v 1.38 2013/02/13 14:54:29 ylafon Exp $
+// $Id: CssSelectors.java,v 1.39 2013/06/12 09:52:25 ylafon Exp $
 // From Philippe Le Hegaret (Philippe.Le_Hegaret@sophia.inria.fr)
 //
 // (c) COPYRIGHT MIT and INRIA, 1997.
@@ -38,7 +38,7 @@
  * Invoke a <code>set</code> function to change the selector clears all
  * properties !
  *
- * @version $Revision: 1.38 $
+ * @version $Revision: 1.39 $
  */
 public final class CssSelectors extends SelectorsList
 		implements CssSelectorsConstant, Comparable<CssSelectors> {
@@ -510,7 +510,7 @@
 	}
 
 	/**
-	 * Returns <code>true</code> if the selector can matched this selector.
+	 * Returns <code>true</code> if the selector can match this selector.
 	 * <p/>
 	 * <p/>
 	 * Examples:<br>
@@ -570,7 +570,7 @@
 	}
 
 	/**
-	 * Returns true if the selector can matched another selector. called by
+	 * Returns true if the selector can match another selector. called by
 	 * canApply
 	 *
 	 * @param selector The selector to compare
@@ -588,12 +588,12 @@
 			if ((connector == DESCENDANT) && (selector.next != null)) {
 				// here we are in this case :
 				// H1 and HTML BODY H1 EM
-				// H1 can't matched EM but EM have next
+				// H1 can't match EM but EM have next
 				return canMatch(selector.next);
 			} else {
 				// here we are in this case :
 				// H1 and HTML
-				// H1 can't matched HTML and HTML don't have next
+				// H1 can't match HTML and HTML don't have next
 				Util.verbose("canMatch RETURN FALSE");
 				return false;
 			}

Received on Wednesday, 12 June 2013 09:52:26 UTC