Skip to content

Commit df32db1

Browse files
author
Jefferson Carpenter
committed
Type of suggested lemma in Bin-isomorphism compiles
1 parent 379e869 commit df32db1

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/plfa/part1/Quantifiers.lagda.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -493,7 +493,10 @@ Many of the alternatives for proving `to∘from` turn out to be tricky.
493493
However, the proof can be straightforward if you use the following lemma,
494494
which is a corollary of `≡Can`.
495495

496-
proj₁≡→Can≡ : {c c′ : ∃[ b ] Can b} → proj₁ c ≡ proj₁ c′ → c ≡ c′
496+
proj₁≡→Can≡ : {c c′ : ∃[ b ] Can b} → Σ.proj₁ c ≡ Σ.proj₁ c′ → c ≡ c′
497+
498+
We use the syntax `Σ.proj₁` to refer to the `proj₁` field defined in
499+
this module rather than to the imported `proj₁` field.
497500

498501
```agda
499502
-- Your code goes here

0 commit comments

Comments
 (0)