Spelling correction in comments
authorChristopher L. Conway <christopherleeconway@gmail.com>
Wed, 16 Dec 2009 18:33:31 +0000 (18:33 +0000)
committerChristopher L. Conway <christopherleeconway@gmail.com>
Wed, 16 Dec 2009 18:33:31 +0000 (18:33 +0000)
src/parser/cvc/cvc_lexer.g

index dd0d7c69c1022d134d380ca1cee523c6e1fca4e8..47cebbbb0f23131204bcec0ed7f806d607ecbed9 100644 (file)
@@ -105,14 +105,14 @@ WHITESPACE options { paraphrase = "whitespace"; }
   ;
 
 /**
- * Mathces and skips the newline symbols in the input.
+ * Matches and skips the newline symbols in the input.
  */
 NEWLINE options { paraphrase = "a newline"; }  
   : ('\r' '\n' | '\r' | '\n')       { $setType(antlr::Token::SKIP); newline(); }
   ;
 
 /**
- * Mathces the comments and ignores them
+ * Matches the comments and ignores them
  */
 COMMENT options { paraphrase = "comment"; }
   : '%' (~('\n' | '\r'))*                    { $setType(antlr::Token::SKIP); }