Skip to content

Commit a1957e2

Browse files
committed
chore: deprecate using non-deprecated names (#30057)
Found by the automated removal of deprecations in #30052, specifically [this commit](5a7cf54).
1 parent b500347 commit a1957e2

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Mathlib/Analysis/LocallyConvex/Basic.lean

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ theorem absorbent_iff_eventually_nhdsNE_zero :
170170
@[deprecated (since := "2025-03-03")]
171171
alias absorbent_iff_eventually_nhdsWithin_zero := absorbent_iff_eventually_nhdsNE_zero
172172

173-
alias ⟨Absorbent.eventually_nhdsNE_zero, _⟩ := absorbent_iff_eventually_nhdsWithin_zero
173+
alias ⟨Absorbent.eventually_nhdsNE_zero, _⟩ := absorbent_iff_eventually_nhdsNE_zero
174174

175175
@[deprecated (since := "2025-03-03")]
176176
alias Absorbent.eventually_nhdsWithin_zero := Absorbent.eventually_nhdsNE_zero

Mathlib/CategoryTheory/Monoidal/Cartesian/Mon_.lean

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ def MonObj.ofRepresentableBy (F : Cᵒᵖ ⥤ MonCat.{w}) (α : (F ⋙ forget _)
123123
@[deprecated (since := "2025-03-07")]
124124
alias MonObjOfRepresentableBy := MonObj.ofRepresentableBy
125125

126-
@[deprecated (since := "2025-09-09")] alias Mon_ClassOfRepresentableBy := MonObjOfRepresentableBy
126+
@[deprecated (since := "2025-09-09")] alias Mon_ClassOfRepresentableBy := MonObj.ofRepresentableBy
127127

128128
/-- If `M` is a monoid object, then `Hom(X, M)` has a monoid structure. -/
129129
abbrev Hom.monoid : Monoid (X ⟶ M) where
@@ -268,7 +268,7 @@ alias MonObjOfRepresentableBy_yonedaMonObjRepresentableBy :=
268268

269269
@[deprecated (since := "2025-09-09")]
270270
alias Mon_ClassOfRepresentableBy_yonedaMonObjRepresentableBy :=
271-
MonObjOfRepresentableBy_yonedaMonObjRepresentableBy
271+
MonObj.ofRepresentableBy_yonedaMonObjRepresentableBy
272272

273273
/-- The yoneda embedding for `Mon_C` is fully faithful. -/
274274
def yonedaMonFullyFaithful : yonedaMon (C := C).FullyFaithful where

Mathlib/Data/Set/Pairwise/Basic.lean

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ theorem Pairwise.insert_of_symmetric_of_notMem (hs : s.Pairwise r) (hr : Symmetr
177177
(pairwise_insert_of_symmetric_of_notMem hr ha).2 ⟨hs, h⟩
178178

179179
@[deprecated (since := "2025-05-23")]
180-
alias Pairwise.insert_of_symmetric_of_not_mem := Pairwise.insert_of_symmetric_of_notMem
180+
alias Pairwise.insert_of_symmetric_of_not_mem := Pairwise.insert_of_symmetric
181181

182182
theorem pairwise_pair : Set.Pairwise {a, b} r ↔ a ≠ b → r a b ∧ r b a := by simp [pairwise_insert]
183183

0 commit comments

Comments
 (0)