From b05b09a9f699b4a44313a5b8818752ebbaafe5ff Mon Sep 17 00:00:00 2001 From: David Majda Date: Sat, 16 Jun 2012 15:08:17 +0200 Subject: [PATCH] README.md: Remove extraneous "and" Based on patch for pegjs-website by Michael Ficarra: https://github.com/dmajda/pegjs-website/pull/3 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 759cb3a..a225d11 100644 --- a/README.md +++ b/README.md @@ -178,7 +178,7 @@ Try to match the expression. If the match succeeds, just return an empty string #### ! *expression* -Try to match the expression and. If the match does not succeed, just return an empty string and do not advance the parser position, otherwise consider the match failed. +Try to match the expression. If the match does not succeed, just return an empty string and do not advance the parser position, otherwise consider the match failed. #### & { *predicate* }