1
0
mirror of https://github.com/stedolan/jq.git synced 2024-05-11 05:55:39 +00:00

Fix typo on error message

This commit is contained in:
Juan Guerrero
2013-10-06 17:52:04 +02:00
parent 7e7c08da47
commit 9e53f36a74

View File

@@ -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;
} |