]> granicus.if.org Git - jq/commitdiff
Fix typo on error message 188/head
authorJuan Guerrero <juan.guerrero.lozano@gmail.com>
Sun, 6 Oct 2013 15:52:04 +0000 (17:52 +0200)
committerJuan Guerrero <juan.guerrero.lozano@gmail.com>
Sun, 6 Oct 2013 15:52:04 +0000 (17:52 +0200)
parser.y

index 5bcaf8d17e1e9d7d3c221e2661820a31c8a6eab4..b068b43099e741e0214543c154e0d0639c3652eb 100644 (file)
--- a/parser.y
+++ b/parser.y
@@ -230,7 +230,7 @@ Term "as" '$' IDENT '|' Exp {
   $$ = gen_cond($2, $4, $5);
 } |
 "if" Exp "then" error {
-  FAIL(@$, "Possibly unterminated 'if' statment");
+  FAIL(@$, "Possibly unterminated 'if' statement");
   $$ = $2;
 } |