Skip to content

Commit

Permalink
chore: fix universe in PSigma.exists (#4862)
Browse files Browse the repository at this point in the history
  • Loading branch information
kim-em authored Jul 29, 2024
1 parent abf4206 commit a845a00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Init/Core.lean
Original file line number Diff line number Diff line change
Expand Up @@ -1204,7 +1204,7 @@ def Prod.map {α₁ : Type u₁} {α₂ : Type u₂} {β₁ : Type v₁} {β₂

/-! # Dependent products -/

theorem PSigma.exists {α : Type u} {p : α → Prop} : (PSigma (fun x => p x)) → Exists (fun x => p x)
theorem PSigma.exists {α : Sort u} {p : α → Prop} : (PSigma (fun x => p x)) → Exists (fun x => p x)
| ⟨x, hx⟩ => ⟨x, hx⟩

@[deprecated PSigma.exists (since := "2024-07-27")]
Expand Down

0 comments on commit a845a00

Please sign in to comment.