From df6e9570ef2bbd0873b40423a0f811a1552b92ca Mon Sep 17 00:00:00 2001 From: Phillip Alexander Date: Wed, 22 Oct 2014 17:50:01 -0700 Subject: [PATCH] Fix spelling error ignouring --> ignoring --- examples/phraser.jison | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/phraser.jison b/examples/phraser.jison index 673fd89e6..3c96e4d13 100644 --- a/examples/phraser.jison +++ b/examples/phraser.jison @@ -1,4 +1,4 @@ -/* description: Parses words out of html, ignouring html in the parse, but returning it in the end */ +/* description: Parses words out of html, ignoring html in the parse, but returning it in the end */ /* lexical grammar */ %lex @@ -43,4 +43,4 @@ content if (!yy.lexer.charHandler) yy.lexer.charHandler = function(char) {return char;}; $$ = yy.lexer.charHandler(yytext); } - ; \ No newline at end of file + ;