Skip to content

Commit 561ba4a

Browse files
committed
doc(misc): fix file refs (leanprover-community#33258)
Fix or clarify some dead documentation file refs.
1 parent 0ce4e62 commit 561ba4a

File tree

6 files changed

+14
-13
lines changed

6 files changed

+14
-13
lines changed

Cache/IO.lean

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -459,10 +459,10 @@ Return tuples of the form ("module name", "path to .lean file").
459459
460460
The input string `arg` takes one of the following forms:
461461
462-
1. `Mathlib.Algebra.Fields.Basic`: there exists such a Lean file
463-
2. `Mathlib.Algebra.Fields`: no Lean file exists but a folder (TODO)
464-
3. `Mathlib/Algebra/Fields/Basic.lean`: the file exists (note potentially `\` on Windows)
465-
4. `Mathlib/Algebra/Fields/`: the folder exists (TODO)
462+
1. `Mathlib.Algebra.Field.Basic`: there exists such a Lean file
463+
2. `Mathlib.Algebra.Field`: no Lean file exists but a folder (TODO)
464+
3. `Mathlib/Algebra/Field/Basic.lean`: the file exists (note potentially `\` on Windows)
465+
4. `Mathlib/Algebra/Field/`: the folder exists (TODO)
466466
467467
Not supported yet:
468468

Mathlib/Deprecated/RingHom.lean

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public import Mathlib.Data.Set.Insert
1212
/-!
1313
# Additional lemmas about homomorphisms of semirings and rings
1414
15-
These lemmas were in `Mathlib/Algebra/Hom/Ring/Defs.lean` and have now been deprecated.
15+
These lemmas were in `Mathlib/Algebra/Ring/Hom/Defs.lean` and have now been deprecated.
1616
-/
1717

1818
@[expose] public section

Mathlib/Geometry/Manifold/VectorBundle/LocalFrame.lean

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ Any section `s` of `e` can be uniquely written as `s = ∑ i, f^i sᵢ` near `x`
2727
and `s` is smooth at `x` iff the functions `f^i` are.
2828
2929
In this file, we prove the latter statement for finite-rank bundles (with coefficients in a
30-
complete field). In `Mathlib/Geometry/Manifold/VectorBundle/OrthonormalFrame.lean` (#26221),
31-
we will prove the same for real vector bundles of any rank which admit a `C^n` bundle metric.
32-
This includes bundles of finite rank, modelled on a Hilbert space or on a Banach space which has
33-
smooth partitions of unity.
30+
complete field). In the planned file `Mathlib/Geometry/Manifold/VectorBundle/OrthonormalFrame.lean`
31+
(#26221), we will prove the same for real vector bundles of any rank which admit a `C^n` bundle
32+
metric. This includes bundles of finite rank, modelled on a Hilbert space or on a Banach space which
33+
has smooth partitions of unity.
3434
3535
We will use this to construct local extensions of a vector to a section which is smooth on the
3636
trivialisation domain.

Mathlib/Init.lean

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ as early as possible.
5353
5454
All linters imported here have no bulk imports;
5555
**Not** imported in this file are
56-
- the text-based linters in `Linters/TextBased.lean`, as they can be imported later
56+
- the text-based linters in `Mathlib/Tactic/Linter/TextBased.lean`, as they can be imported later
5757
- the `haveLet` linter, as it is currently disabled by default due to crashes
5858
- the `ppRoundTrip` linter, which is currently disabled (as this is not mature enough)
5959
- the `minImports` linter, as that linter is disabled by default (and has an informational function;

Mathlib/Probability/ProbabilityMassFunction/Basic.lean

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,9 @@ public import Mathlib.MeasureTheory.Measure.Dirac
1414
This file is about probability mass functions or discrete probability measures:
1515
a function `α → ℝ≥0∞` such that the values have (infinite) sum `1`.
1616
17-
Construction of monadic `pure` and `bind` is found in `ProbabilityMassFunction/Monad.lean`,
18-
other constructions of `PMF`s are found in `ProbabilityMassFunction/Constructions.lean`.
17+
Construction of monadic `pure` and `bind` is found in
18+
`Mathlib/Probability/ProbabilityMassFunction/Monad.lean`, other constructions of `PMF`s are found in
19+
`Mathlib/Probability/ProbabilityMassFunction/Constructions.lean`.
1920
2021
Given `p : PMF α`, `PMF.toOuterMeasure` constructs an `OuterMeasure` on `α`,
2122
by assigning each set the sum of the probabilities of each of its elements.

Mathlib/Topology/UniformSpace/Ultra/Basic.lean

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ In this file we define `IsUltraUniformity`, a Prop mixin typeclass.
2626
2727
## Implementation notes
2828
29-
As in the `Mathlib/Topology/UniformSpace/Defs.lean` file, we do not reuse `Mathlib/Data/SetRel.lean`
29+
As in the `Mathlib/Topology/UniformSpace/Defs.lean` file, we do not reuse `Mathlib/Data/Rel.lean`
3030
but rather extend the relation properties as needed.
3131
3232
## TODOs

0 commit comments

Comments
 (0)