Make most tables not wrap on small screens

This commit is contained in:
2022-09-10 23:56:08 -07:00
parent dd8c846b3e
commit 7d5b39f130
4 changed files with 5 additions and 1 deletions

View File

@@ -219,6 +219,7 @@ Here, we may as well go through the three constructors to explain what they mean
Now it's time for some fun! The UCC language specification starts by defining two values:
true and false. Why don't we do the same thing?
{{< foldtable >}}
|UCC Spec| Coq encoding |
|---|----|
|\\(\\text{false}\\)=\\([\\text{drop}]\\)| {{< codelines "Coq" "dawn/Dawn.v" 41 42 >}}
@@ -257,6 +258,7 @@ element, as specified. The proof for \\(\\text{true}\\) is very similar in spiri
We can also formalize the \\(\\text{or}\\) operator:
{{< foldtable >}}
|UCC Spec| Coq encoding |
|---|----|
|\\(\\text{or}\\)=\\(\\text{clone}\\ \\text{apply}\\)| {{< codelines "Coq" "dawn/Dawn.v" 65 65 >}}