Skip to content

Commit 6d58999

Browse files
committed
chore: whitespace fixes (#25956)
Found by #24465.
1 parent 823f80f commit 6d58999

File tree

11 files changed

+19
-19
lines changed

11 files changed

+19
-19
lines changed

Mathlib/Algebra/DirectSum/Internal.lean

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -468,7 +468,7 @@ variable [CanonicallyOrderedAdd ι]
468468
/-- The difference with `DirectSum.listProd_apply_eq_zero` is that the indices at which
469469
the terms of the list are zero is allowed to vary. -/
470470
theorem listProd_apply_eq_zero' {l : List ((⨁ i, A i) × ι)}
471-
(hl : ∀ xn ∈ l, ∀ k < xn.2, xn.1 k = 0) ⦃n : ι⦄ (hn : n < (l.map Prod.snd).sum) :
471+
(hl : ∀ xn ∈ l, ∀ k < xn.2, xn.1 k = 0) ⦃n : ι⦄ (hn : n < (l.map Prod.snd).sum) :
472472
(l.map Prod.fst).prod n = 0 := by
473473
induction l generalizing n with
474474
| nil => simp [(zero_le n).not_gt] at hn
@@ -500,7 +500,7 @@ variable {A : ι → σ} [SetLike.GradedMonoid A]
500500
/-- The difference with `DirectSum.multisetProd_apply_eq_zero` is that the indices at which
501501
the terms of the multiset are zero is allowed to vary. -/
502502
theorem multisetProd_apply_eq_zero' {s : Multiset ((⨁ i, A i) × ι)}
503-
(hs : ∀ xn ∈ s, ∀ k < xn.2, xn.1 k = 0) ⦃n : ι⦄ (hn : n < (s.map Prod.snd).sum) :
503+
(hs : ∀ xn ∈ s, ∀ k < xn.2, xn.1 k = 0) ⦃n : ι⦄ (hn : n < (s.map Prod.snd).sum) :
504504
(s.map Prod.fst).prod n = 0 := by
505505
have := listProd_apply_eq_zero' (l := s.toList) (by simpa using hs)
506506
(by simpa [← Multiset.sum_coe, ← Multiset.map_coe])
@@ -516,7 +516,7 @@ theorem multisetProd_apply_eq_zero {s : Multiset (⨁ i, A i)} {m : ι}
516516
/-- The difference with `DirectSum.finsetProd_apply_eq_zero` is that the indices at which
517517
the terms of the multiset are zero is allowed to vary. -/
518518
theorem finsetProd_apply_eq_zero' {s : Finset ((⨁ i, A i) × ι)}
519-
(hs : ∀ xn ∈ s, ∀ k < xn.2, xn.1 k = 0) ⦃n : ι⦄ (hn : n < ∑ xn ∈ s, xn.2) :
519+
(hs : ∀ xn ∈ s, ∀ k < xn.2, xn.1 k = 0) ⦃n : ι⦄ (hn : n < ∑ xn ∈ s, xn.2) :
520520
(∏ xn ∈ s, xn.1) n = 0 := by
521521
simpa using listProd_apply_eq_zero' (l := s.toList) (by simpa using hs) (by simpa)
522522

Mathlib/Analysis/Analytic/Order.lean

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ namespace AnalyticOnNhd
339339
variable {U : Set 𝕜} {f : 𝕜 → E}
340340

341341
/-- The set where an analytic function has infinite order is clopen in its domain of analyticity. -/
342-
theorem isClopen_setOf_analyticOrderAt_eq_top (hf : AnalyticOnNhd 𝕜 f U) :
342+
theorem isClopen_setOf_analyticOrderAt_eq_top (hf : AnalyticOnNhd 𝕜 f U) :
343343
IsClopen {u : U | analyticOrderAt f u = ⊤} := by
344344
constructor
345345
· rw [← isOpen_compl_iff, isOpen_iff_forall_mem_open]

Mathlib/Analysis/RCLike/TangentCone.lean

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ variable {𝕜 : Type*} [NontriviallyNormedField 𝕜] [h𝕜 : IsRCLikeNormedFi
1717
{E : Type*} [NormedAddCommGroup E] [NormedSpace 𝕜 E] [NormedSpace ℝ E]
1818
{s : Set E} {x : E}
1919

20-
theorem tangentConeAt_real_subset_isRCLikeNormedField :
20+
theorem tangentConeAt_real_subset_isRCLikeNormedField :
2121
tangentConeAt ℝ s x ⊆ tangentConeAt 𝕜 s x := by
2222
letI := h𝕜.rclike
2323
rintro y ⟨c, d, d_mem, c_lim, hcd⟩

Mathlib/CategoryTheory/Bicategory/Monad/Basic.lean

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ abbrev Comonad.comul {a : B} {t : a ⟶ a} [Comonad t] : t ⟶ t ≫ t := Comon_
4747

4848
namespace Comonad
4949

50-
variable {a: B}
50+
variable {a : B}
5151

5252
/- Comonad laws -/
5353
section

Mathlib/CategoryTheory/FiberedCategory/HomLift.lean

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ variable {R S : 𝒮} {a b : 𝒳} (f : R ⟶ S) (φ : a ⟶ b) [p.IsHomLift f
172172
instance comp_id_lift : p.IsHomLift f (𝟙 a ≫ φ) := by
173173
simp_all
174174

175-
instance id_comp_lift : p.IsHomLift f (φ ≫ 𝟙 b) := by
175+
instance id_comp_lift : p.IsHomLift f (φ ≫ 𝟙 b) := by
176176
simp_all
177177

178178
instance lift_id_comp : p.IsHomLift (𝟙 R ≫ f) φ := by

Mathlib/CategoryTheory/Limits/Preserves/Bifunctor.lean

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ a colimit of `uncurry.obj (whiskeringLeft₂ C|>.obj K₁|>.obj K₂|>.obj G)` a
127127
noncomputable def isoObjCoconePointsOfIsColimit
128128
{c₁ : Cocone K₁} (hc₁ : IsColimit c₁)
129129
{c₂ : Cocone K₂} (hc₂ : IsColimit c₂)
130-
{c₃ : Cocone <| uncurry.obj (whiskeringLeft₂ C|>.obj K₁|>.obj K₂|>.obj G)}
130+
{c₃ : Cocone <| uncurry.obj (whiskeringLeft₂ C |>.obj K₁ |>.obj K₂ |>.obj G)}
131131
(hc₃ : IsColimit c₃) :
132132
(G.obj c₁.pt).obj c₂.pt ≅ c₃.pt :=
133133
IsColimit.coconePointUniqueUpToIso (isColimitOfPreserves₂ G hc₁ hc₂) hc₃
@@ -136,7 +136,7 @@ section
136136

137137
variable {c₁ : Cocone K₁} (hc₁ : IsColimit c₁)
138138
{c₂ : Cocone K₂} (hc₂ : IsColimit c₂)
139-
{c₃ : Cocone <| uncurry.obj (whiskeringLeft₂ C|>.obj K₁|>.obj K₂|>.obj G)}
139+
{c₃ : Cocone <| uncurry.obj (whiskeringLeft₂ C |>.obj K₁ |>.obj K₂ |>.obj G)}
140140
(hc₃ : IsColimit c₃)
141141

142142
/-- Characterize the inverse direction of the isomorphism
@@ -255,7 +255,7 @@ a limit of `uncurry.obj (whiskeringLeft₂ C|>.obj K₁|>.obj K₂|>.obj G)` and
255255
noncomputable def isoObjConePointsOfIsLimit
256256
{c₁ : Cone K₁} (hc₁ : IsLimit c₁)
257257
{c₂ : Cone K₂} (hc₂ : IsLimit c₂)
258-
{c₃ : Cone <| uncurry.obj (whiskeringLeft₂ C|>.obj K₁|>.obj K₂|>.obj G)}
258+
{c₃ : Cone <| uncurry.obj (whiskeringLeft₂ C |>.obj K₁ |>.obj K₂ |>.obj G)}
259259
(hc₃ : IsLimit c₃) :
260260
(G.obj c₁.pt).obj c₂.pt ≅ c₃.pt :=
261261
IsLimit.conePointUniqueUpToIso (isLimitOfPreserves₂ G hc₁ hc₂) hc₃
@@ -264,7 +264,7 @@ section
264264

265265
variable {c₁ : Cone K₁} (hc₁ : IsLimit c₁)
266266
{c₂ : Cone K₂} (hc₂ : IsLimit c₂)
267-
{c₃ : Cone <| uncurry.obj (whiskeringLeft₂ C|>.obj K₁|>.obj K₂|>.obj G)}
267+
{c₃ : Cone <| uncurry.obj (whiskeringLeft₂ C |>.obj K₁ |>.obj K₂ |>.obj G)}
268268
(hc₃ : IsLimit c₃)
269269

270270
/-- Characterize the forward direction of the isomorphism

Mathlib/CategoryTheory/Monoidal/Internal/FunctorCategory.lean

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def functorObjObj (A : C ⥤ D) [Mon_Class A] (X : C) : Mon_ D where
5353

5454
/-- A monoid object in a functor category induces a functor to the category of monoid objects. -/
5555
@[simps]
56-
def functorObj (A : C ⥤ D) [Mon_Class A] : C ⥤ Mon_ D where
56+
def functorObj (A : C ⥤ D) [Mon_Class A] : C ⥤ Mon_ D where
5757
obj := functorObjObj A
5858
map f :=
5959
{ hom := A.map f

Mathlib/Combinatorics/Quiver/Path.lean

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ def decidableEqBddPathsZero (v w : V) : DecidableEq (BoundedPaths v w 0) :=
217217
/-- Given decidable equality on paths of length up to `n`, we can construct
218218
decidable equality on paths of length up to `n + 1`. -/
219219
def decidableEqBddPathsOfDecidableEq (n : ℕ) (h₁ : DecidableEq V)
220-
(h₂ : ∀ (v w : V), DecidableEq (v ⟶ w)) (h₃ : ∀ (v w : V), DecidableEq (BoundedPaths v w n))
220+
(h₂ : ∀ (v w : V), DecidableEq (v ⟶ w)) (h₃ : ∀ (v w : V), DecidableEq (BoundedPaths v w n))
221221
(v w : V) : DecidableEq (BoundedPaths v w (n + 1)) :=
222222
fun ⟨p, hp⟩ ⟨q, hq⟩ =>
223223
match v, w, p, q with

Mathlib/Deprecated/RingHom.lean

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ variable {_ : NonAssocSemiring α} {_ : NonAssocSemiring β} (f : α →+* β)
2727

2828
/-- `f : α →+* β` has a trivial codomain iff its range is `{0}`. -/
2929
@[deprecated "Use range_eq_singleton_iff and codomain_trivial_iff_range_trivial"
30-
(since := "2025-06-09") ]
30+
(since := "2025-06-09")]
3131
theorem codomain_trivial_iff_range_eq_singleton_zero : (0 : β) = 1 ↔ Set.range f = {0} :=
3232
f.codomain_trivial_iff_range_trivial.trans
3333
fun h =>
@@ -39,7 +39,7 @@ end
3939
section Semiring
4040

4141
variable [Semiring α] [Semiring β]
42-
@[deprecated map_dvd (since := "2025-06-09") ]
42+
@[deprecated map_dvd (since := "2025-06-09")]
4343
protected theorem map_dvd (f : α →+* β) {a b : α} : a ∣ b → f a ∣ f b :=
4444
map_dvd f
4545

Mathlib/Order/RelClasses.lean

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -659,11 +659,11 @@ theorem ssuperset_imp_ssuperset (h₁ : a ⊆ c) (h₂ : d ⊆ b) : a ⊃ b →
659659
ssubset_imp_ssubset h₂ h₁
660660

661661
@[gcongr]
662-
theorem ssuperset_imp_ssuperset_left (h : a ⊆ b) : c ⊃ b → c ⊃ a :=
662+
theorem ssuperset_imp_ssuperset_left (h : a ⊆ b) : c ⊃ b → c ⊃ a :=
663663
ssubset_of_subset_of_ssubset h
664664

665665
@[gcongr]
666-
theorem ssuperset_imp_ssuperset_right (h : a ⊆ b) : a ⊃ c → b ⊃ c :=
666+
theorem ssuperset_imp_ssuperset_right (h : a ⊆ b) : a ⊃ c → b ⊃ c :=
667667
ssubset_imp_ssubset_right h
668668

669669
/-- See if the term is `a ⊂ b` and the goal is `a ⊆ b`. -/

0 commit comments

Comments
 (0)