Skip to content

Commit

Permalink
Fix grammar
Browse files Browse the repository at this point in the history
  • Loading branch information
phaag committed Nov 26, 2023
1 parent eaf96ce commit 40eb5c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/grammar.y
Original file line number Diff line number Diff line change
Expand Up @@ -1498,13 +1498,13 @@ term: ANY { /* this is an unconditionally true expression, as a filter applies i
YYABORT;
$$.self = slot;
}
dqual GEO ID {
| dqual GEO ID {
int slot = AddGeo($1.direction, "ID");
if ( slot == 0 )
YYABORT;
$$.self = slot;
}
dqual GEO LT {
| dqual GEO LT {
int slot = AddGeo($1.direction, "LT");
if ( slot == 0 )
YYABORT;
Expand Down

0 comments on commit 40eb5c9

Please sign in to comment.