Skip to content

Commit

Permalink
grammar
Browse files Browse the repository at this point in the history
  • Loading branch information
uberj committed Oct 25, 2012
1 parent 482739d commit b10dcaa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.mkd
Expand Up @@ -14,4 +14,4 @@ WARNING: shift/reduce conflict for TEXT in state 21 resolved as shift
WARNING: shift/reduce conflict for RE in state 21 resolved as shift
```

These are OK. The parser doesn't know whether to reduce an ``expression OR expression`` and decides to shift's the OR statement onto the stack. This is what we want because a space between two terms implies and AND, and OR is always the last thing you should do.
These are OK. The parser doesn't know whether to reduce an ``expression OR expression`` and decides to shift's the OR statement onto the stack. This is what we want because a space between two terms implies and AND and an OR is always the last thing you should do.

0 comments on commit b10dcaa

Please sign in to comment.