Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
zhezhouzz committed Mar 9, 2024
1 parent a4ee509 commit 5ebff49
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ val[@assertRty] add: (p:Path.t)⇢(path:{v:Path.t | true})→(content:{v:Bytes.t

### Coq proofs in the Docker Image

The Coq proofs of our core language **λ<sup>E</sup>** are located in the `formalization/` directory. See `formalization/README.md`.
The Coq proofs of our core language **λ<sup>E</sup>** are located in the `formalization/` directory. To build and check the Coq formalization, simply run `make` in the formalization directory. See `formalization/README.md`.

## Step-by-Step Instructions

Expand Down Expand Up @@ -393,13 +393,14 @@ EFFOP := string
LIT :=
| "true"
| "false"
| INT
| VAR
| OP VAR ...

PROP :=
| LIT
| "implies" PROP PROP
| "iff" PROP PRO
| "iff" PROP PROP
| PROP "&&" PROP
| PROP "||" PROP
| "not" PROP
Expand Down

0 comments on commit 5ebff49

Please sign in to comment.