Skip to content

Commit

Permalink
chore: Fix universe (misprint in Portmanteau.lean). (#8620)
Browse files Browse the repository at this point in the history
In my earlier PR #8097 there there was a typo `variable {Ω : Type}` which should have been a universe polymorphic `variable {Ω : Type*}`. This PR fixes 1 character. Apologies!
  • Loading branch information
kkytola authored and awueth committed Dec 19, 2023
1 parent 2d1a954 commit e0404bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Mathlib/MeasureTheory/Measure/Portmanteau.lean
Original file line number Diff line number Diff line change
Expand Up @@ -550,7 +550,7 @@ implies
-/

variable {Ω : Type} [MeasurableSpace Ω] [TopologicalSpace Ω] [OpensMeasurableSpace Ω]
variable {Ω : Type*} [MeasurableSpace Ω] [TopologicalSpace Ω] [OpensMeasurableSpace Ω]

lemma lintegral_le_liminf_lintegral_of_forall_isOpen_measure_le_liminf_measure
{μ : Measure Ω} {μs : ℕ → Measure Ω} {f : Ω → ℝ} (f_cont : Continuous f) (f_nn : 0 ≤ f)
Expand Down

0 comments on commit e0404bc

Please sign in to comment.