fix: typo in theorem
`()` is `Unit`
This commit is contained in:
parent
3107473c9f
commit
e841f16738
1 changed files with 2 additions and 2 deletions
|
|
@ -606,8 +606,8 @@ protected theorem PSigma.eta {α : Sort u} {β : α → Sort v} {a₁ a₂ : α}
|
|||
theorem PUnit.subsingleton (a b : PUnit) : a = b := by
|
||||
cases a; cases b; exact rfl
|
||||
|
||||
@[simp] theorem PUnit.eq_punit (a : PUnit) : a = () :=
|
||||
PUnit.subsingleton a ()
|
||||
@[simp] theorem PUnit.eq_punit (a : PUnit) : a = ⟨⟩ :=
|
||||
PUnit.subsingleton a ⟨⟩
|
||||
|
||||
instance : Subsingleton PUnit :=
|
||||
Subsingleton.intro PUnit.subsingleton
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue