Skip to content

Commit 44ac7c1

Browse files
authored
Structures: update names to match new ones in mathlib (#291)
Fixes #254
1 parent 863a15e commit 44ac7c1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

MIL/C06_Structures/S02_Algebraic_Structures.lean

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -175,17 +175,17 @@ morally the same as the definition of a group that Mathlib uses.
175175
176176
It is sometimes useful to bundle
177177
the type together with the structure, and Mathlib also
178-
contains a definition of a ``GroupCat`` structure that is equivalent to
178+
contains a definition of a ``Grp`` structure that is equivalent to
179179
the following:
180180
EXAMPLES: -/
181181
-- QUOTE:
182-
structure Group₁Cat where
182+
structure Grp₁ where
183183
α : Type*
184184
str : Group₁ α
185185
-- QUOTE.
186186

187187
/- TEXT:
188-
The Mathlib version is found in ``Mathlib.Algebra.Category.GroupCat.Basic``,
188+
The Mathlib version is found in ``Mathlib.Algebra.Category.Grp.Basic``,
189189
and you can ``#check`` it if you add this to the imports at the
190190
beginning of the examples file.
191191
@@ -277,7 +277,7 @@ def permGroup {α : Type*} : Group₁ (Equiv.Perm α)
277277

278278
/- TEXT:
279279
In fact, Mathlib defines exactly this ``Group`` structure on ``Equiv.Perm α``
280-
in the file ``GroupTheory.Perm.Basic``.
280+
in the file ``Algebra.Group.End``.
281281
As always, you can hover over the theorems used in the definition of
282282
``permGroup`` to see their statements,
283283
and you can jump to their definitions in the original file to learn

0 commit comments

Comments
 (0)