-
Notifications
You must be signed in to change notification settings - Fork 380
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Merged by Bors] - chore(Measure.MeasureSpace): clean up uses of @
#10932
Conversation
@@ -618,7 +618,8 @@ theorem measure_liminf_eq_zero {s : ℕ → Set α} (h : (∑' i, μ (s i)) ≠ | |||
#align measure_theory.measure_liminf_eq_zero MeasureTheory.measure_liminf_eq_zero | |||
|
|||
theorem limsup_ae_eq_of_forall_ae_eq (s : ℕ → Set α) {t : Set α} | |||
(h : ∀ n, s n =ᵐ[μ] t) : @limsup (Set α) ℕ _ s atTop =ᵐ[μ] t := by | |||
(h : ∀ n, s n =ᵐ[μ] t) : limsup (α := Set α) s atTop =ᵐ[μ] t := by | |||
-- Need to specify `α := Set α` above because of diamond; see gh issue #16932 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#16932 doesn't exist; is this leanprover-community/mathlib3#16932 ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Expanded
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's open a new issue for mathlib 4 with a lean 4 mwe, and reference that
This PR/issue depends on: |
Can you merge master to shrink the diff? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
bors merge
Thanks!
We eliminate all possible uses of `@`'s either through deletion or replacement with an explicit argument. A comment about a diamond is slightly clarified. Co-authored-by: Kevin Buzzard <[email protected]>
Pull request successfully merged into master. Build succeeded: |
@
@
We eliminate all possible uses of `@`'s either through deletion or replacement with an explicit argument. A comment about a diamond is slightly clarified. Co-authored-by: Kevin Buzzard <[email protected]>
We eliminate all possible uses of `@`'s either through deletion or replacement with an explicit argument. A comment about a diamond is slightly clarified. Co-authored-by: Kevin Buzzard <[email protected]>
We eliminate all possible uses of `@`'s either through deletion or replacement with an explicit argument. A comment about a diamond is slightly clarified. Co-authored-by: Kevin Buzzard <[email protected]>
We eliminate all possible uses of
@
's either through deletion or replacement with an explicit argument. A comment about a diamond is slightly clarified to point at #10941.