Skip to content

Commit

Permalink
Fix parsing ↔
Browse files Browse the repository at this point in the history
  • Loading branch information
hferee committed Sep 12, 2024
1 parent 9d3758e commit 8568326
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bin/modal_expressions_parser.ml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,8 @@ let expr : form t =
let modality = chainmod factor modal in
let term = chainl1 modality conj in
let disjunctions = spaces *> chainl1 term disj <* spaces in
spaces *> chainr1 disjunctions impl <* spaces
let implications = spaces *> chainr1 disjunctions impl <* spaces in
spaces *> chainr1 implications iff <* spaces
)

exception ParseError
Expand Down

0 comments on commit 8568326

Please sign in to comment.