Skip to content

Commit b5c4101

Browse files
Remove deprecation
1 parent f531f14 commit b5c4101

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Mathlib/Order/WithBot/Basic.lean

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -476,7 +476,7 @@ lemma eq_bot_iff_forall_le [NoBotOrder α] : x = ⊥ ↔ ∀ b : α, x ≤ b :=
476476

477477
lemma forall_coe_le_iff_le [NoBotOrder α] : (∀ a : α, a ≤ x → a ≤ y) ↔ x ≤ y := by
478478
obtain _ | a := x
479-
· simpa [WithBot.none_eq_bot, eq_bot_iff_forall_le] using fun a ha ↦ (not_isBot _ ha).elim
479+
· simpa [WithBot.bot_eq, eq_bot_iff_forall_le] using fun a ha ↦ (not_isBot _ ha).elim
480480
· exact ⟨fun h ↦ h _ le_rfl, fun hay b ↦ hay.trans'⟩
481481

482482
lemma forall_le_coe_iff_le [NoBotOrder α] : (∀ a : α, y ≤ a → x ≤ a) ↔ x ≤ y := by

0 commit comments

Comments
 (0)