Merge pull request #587 from plfa/wadler-patch-2

Update Lists.lagda.md
This commit is contained in:
Philip Wadler 2021-08-29 10:30:47 +01:00 committed by GitHub
commit 70825b81c0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -990,7 +990,7 @@ You will need to use extensionality.
#### Exercise `All-∀` (practice)
Show that `All P xs` is isomorphic to `∀ {x} → x ∈ xs → P x`.
Show that `All P xs` is isomorphic to `∀ x → x ∈ xs → P x`.
```
-- You code goes here