Skip to content

Commit

Permalink
DOC: add "FALSE" and "TRUE" to grammar
Browse files Browse the repository at this point in the history
The TLA+ form of the Boolean constants
was added to the parser module `dd._parser`
in commit:
    ce9f6fb
  • Loading branch information
johnyf committed Mar 28, 2021
1 parent c5f62fa commit 269e4fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc.md
Original file line number Diff line number Diff line change
Expand Up @@ -1037,8 +1037,8 @@ expr ::= '\A' names ':' expr # universal quantification (forall)
| '(' expr ')' # parentheses
| NAME # identifier (bit variable)
| '@' INTEGER # BDD node reference
| 'False' # Boolean constant
| 'True' # Boolean constant
| 'FALSE' | 'False' # Boolean constant
| 'TRUE' | 'True' # Boolean constant
pairs ::= [pairs] ',' pair
pair ::= NAME '/' NAME
Expand Down

0 comments on commit 269e4fc

Please sign in to comment.