Skip to content

Commit d68c4dc

Browse files
committed
doc(MeasureTheory): fix typos and inconsistencies (leanprover-community#33153)
Typos found and fixed by Codex.
1 parent d9996c5 commit d68c4dc

26 files changed

Lines changed: 42 additions & 42 deletions

Mathlib/MeasureTheory/Constructions/BorelSpace/Basic.lean

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public import Mathlib.Topology.Instances.Rat
2828
* `IsOpen.measurableSet`, `IsClosed.measurableSet`: open and closed sets are measurable;
2929
* `Continuous.measurable` : a continuous function is measurable;
3030
* `Continuous.measurable2` : if `f : α → β` and `g : α → γ` are measurable and `op : β × γ → δ`
31-
is continuous, then `fun x => op (f x, g y)` is measurable;
31+
is continuous, then `fun x => op (f x, g x)` is measurable;
3232
* `Measurable.add` etc. : dot notation for arithmetic operations on `Measurable` predicates,
3333
and similarly for `dist` and `edist`;
3434
* `AEMeasurable.add` : similar dot notation for almost everywhere measurable functions;

Mathlib/MeasureTheory/Constructions/Cylinders.lean

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ section squareCylinders
5555
/-- Given a finite set `s` of indices, a square cylinder is the product of a set `S` of
5656
`∀ i : s, α i` and of `univ` on the other indices. The set `S` is a product of sets `t i` such that
5757
for all `i : s`, `t i ∈ C i`.
58-
`squareCylinders` is the set of all such `squareCylinders`. -/
58+
`squareCylinders` is the set of all such square cylinders. -/
5959
def squareCylinders (C : ∀ i, Set (Set (α i))) : Set (Set (∀ i, α i)) :=
6060
{S | ∃ s : Finset ι, ∃ t ∈ univ.pi C, S = (s : Set ι).pi t}
6161

Mathlib/MeasureTheory/Constructions/Pi.lean

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ For a collection of σ-finite measures `μ` and a collection of measurable sets
3838
`Measure.pi μ (pi univ s) = ∏ i, m i (s i)`. To do this, we follow the following steps:
3939
* We know that there is some ordering on `ι`, given by an element of `[Countable ι]`.
4040
* Using this, we have an equivalence `MeasurableEquiv.piMeasurableEquivTProd` between
41-
`∀ ι, α i` and an iterated product of `α i`, called `List.tprod α l` for some list `l`.
41+
`∀ i, α i` and an iterated product of `α i`, called `List.tprod α l` for some list `l`.
4242
* On this iterated product we can easily define a product measure `MeasureTheory.Measure.tprod`
4343
by iterating `MeasureTheory.Measure.prod`
4444
* Using the previous two steps we construct `MeasureTheory.Measure.pi'` on `(i : ι) → α i` for

Mathlib/MeasureTheory/Function/ConvergenceInMeasure.lean

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ convergence in measure and other notions of convergence.
3131
* `MeasureTheory.tendstoInMeasure_of_tendsto_ae`: convergence almost everywhere in a finite
3232
measure space implies convergence in measure.
3333
* `MeasureTheory.TendstoInMeasure.exists_seq_tendsto_ae`: if `f` is a sequence of functions
34-
which converges in measure to `g`, then `f` has a subsequence which convergence almost
34+
which converges in measure to `g`, then `f` has a subsequence which converges almost
3535
everywhere to `g`.
3636
* `MeasureTheory.exists_seq_tendstoInMeasure_atTop_iff`: for a sequence of functions `f`,
3737
convergence in measure is equivalent to the fact that every subsequence has another subsequence

Mathlib/MeasureTheory/Function/Jacobian.lean

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ For the next statements, `s` is a measurable set and `f` is differentiable on `s
5151
* `integral_image_eq_integral_abs_det_fderiv_smul`: for `g : E → F`, one has
5252
`∫ x in f '' s, g x ∂μ = ∫ x in s, |(f' x).det| • g (f x) ∂μ`.
5353
* `integrableOn_image_iff_integrableOn_abs_det_fderiv_smul`: for `g : E → F`, the function `g` is
54-
integrable on `f '' s` if and only if `|(f' x).det| • g (f x))` is integrable on `s`.
54+
integrable on `f '' s` if and only if `|(f' x).det| • g (f x)` is integrable on `s`.
5555
5656
## Implementation
5757

Mathlib/MeasureTheory/Function/SimpleFuncDense.lean

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ variable [MeasurableSpace α] [PseudoEMetricSpace α] [OpensMeasurableSpace α]
5555

5656
/-- `nearestPtInd e N x` is the index `k` such that `e k` is the nearest point to `x` among the
5757
points `e 0`, ..., `e N`. If more than one point are at the same distance from `x`, then
58-
`nearestPtInd e N x` returns the least of their indexes. -/
58+
`nearestPtInd e N x` returns the least of their indices. -/
5959
noncomputable def nearestPtInd (e : ℕ → α) : ℕ → α →ₛ ℕ
6060
| 0 => const α 0
6161
| N + 1 =>

Mathlib/MeasureTheory/Function/UnifTight.lean

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ variable {α β ι : Type*} {m : MeasurableSpace α} {μ : Measure α} [NormedAd
4949
section UnifTight
5050

5151
/- This follows closely the `UnifIntegrable` section
52-
from `Mathlib/MeasureTheory/Functions/UniformIntegrable.lean`. -/
52+
from `Mathlib/MeasureTheory/Function/UniformIntegrable.lean`. -/
5353

5454
variable {f g : ι → α → β} {p : ℝ≥0∞}
5555

Mathlib/MeasureTheory/Group/Arithmetic.lean

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ For instances relating, e.g., `ContinuousMul` to `MeasurableMul` see file
3030
## Implementation notes
3131
3232
For the heuristics of `@[to_additive]` it is important that the type with a multiplication
33-
(or another multiplicative operations) is the first (implicit) argument of all declarations.
33+
(or another multiplicative operation) is the first (implicit) argument of all declarations.
3434
3535
## Tags
3636

Mathlib/MeasureTheory/Group/FundamentalDomain.lean

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ open MeasureTheory MeasureTheory.Measure Set Function TopologicalSpace Filter
5757
namespace MeasureTheory
5858

5959
/-- A measurable set `s` is a *fundamental domain* for an additive action of an additive group `G`
60-
on a measurable space `α` with respect to a measure `α` if the sets `g +ᵥ s`, `g : G`, are pairwise
60+
on a measurable space `α` with respect to a measure `μ` if the sets `g +ᵥ s`, `g : G`, are pairwise
6161
a.e. disjoint and cover the whole space. -/
6262
structure IsAddFundamentalDomain (G : Type*) {α : Type*} [Zero G] [VAdd G α] [MeasurableSpace α]
6363
(s : Set α) (μ : Measure α := by volume_tac) : Prop where
@@ -66,7 +66,7 @@ structure IsAddFundamentalDomain (G : Type*) {α : Type*} [Zero G] [VAdd G α] [
6666
protected aedisjoint : Pairwise <| (AEDisjoint μ on fun g : G => g +ᵥ s)
6767

6868
/-- A measurable set `s` is a *fundamental domain* for an action of a group `G` on a measurable
69-
space `α` with respect to a measure `α` if the sets `g • s`, `g : G`, are pairwise a.e. disjoint and
69+
space `α` with respect to a measure `μ` if the sets `g • s`, `g : G`, are pairwise a.e. disjoint and
7070
cover the whole space. -/
7171
@[to_additive IsAddFundamentalDomain]
7272
structure IsFundamentalDomain (G : Type*) {α : Type*} [One G] [SMul G α] [MeasurableSpace α]

Mathlib/MeasureTheory/Integral/Bochner/L1.lean

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ The Bochner integral is defined through the extension process described in the f
4242
* `α →₁[μ] E` : functions in L1 space, i.e., equivalence classes of integrable functions (defined in
4343
`Mathlib/MeasureTheory/Function/LpSpace/Basic.lean`)
4444
* `α →₁ₛ[μ] E` : simple functions in L1 space, i.e., equivalence classes of integrable simple
45-
functions (defined in `Mathlib/MeasureTheory/Function/SimpleFuncDense`)
45+
functions (defined in `Mathlib/MeasureTheory/Function/SimpleFuncDenseLp.lean`)
4646
4747
We also define notations for integral on a set, which are described in the file
4848
`Mathlib/MeasureTheory/Integral/SetIntegral.lean`.

0 commit comments

Comments
 (0)