Skip to content

Commit 5ef6d7d

Browse files
committed
chore: fix typo (#21043)
Co-authored-by: Markus Himmel <markus@lean-fro.org>
1 parent b23a78e commit 5ef6d7d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Mathlib/CategoryTheory/Limits/Shapes/Images.lean

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ so that `m` factors through the `m'` in any other such factorisation.
2424
morphism `e`.
2525
* `HasImages C` means that every morphism in `C` has an image.
2626
* Let `f : X ⟶ Y` and `g : P ⟶ Q` be morphisms in `C`, which we will represent as objects of the
27-
arrow category `arrow C`. Then `sq : f ⟶ g` is a commutative square in `C`. If `f` and `g` have
27+
arrow category `Arrow C`. Then `sq : f ⟶ g` is a commutative square in `C`. If `f` and `g` have
2828
images, then `HasImageMap sq` represents the fact that there is a morphism
2929
`i : image f ⟶ image g` making the diagram
3030
@@ -241,7 +241,7 @@ def ofArrowIso {f g : Arrow C} (F : ImageFactorisation f.hom) (sq : f ⟶ g) [Is
241241

242242
end ImageFactorisation
243243

244-
/-- `has_image f` means that there exists an image factorisation of `f`. -/
244+
/-- `HasImage f` means that there exists an image factorisation of `f`. -/
245245
class HasImage (f : X ⟶ Y) : Prop where mk' ::
246246
exists_image : Nonempty (ImageFactorisation f)
247247

Mathlib/CategoryTheory/Monoidal/Functor.lean

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ namespace Functor
5555
-- "weigh more" than structural maps.
5656
-- (However by this argument `associativity` is currently stated backwards!)
5757
/-- A functor `F : C ⥤ D` between monoidal categories is lax monoidal if it is
58-
equipped with morphisms `ε : 𝟙 _D ⟶ F.obj (𝟙_ C)` and `μ X Y : F.obj X ⊗ F.obj Y ⟶ F.obj (X ⊗ Y)`,
58+
equipped with morphisms `ε : 𝟙_ D ⟶ F.obj (𝟙_ C)` and `μ X Y : F.obj X ⊗ F.obj Y ⟶ F.obj (X ⊗ Y)`,
5959
satisfying the appropriate coherences. -/
6060
class LaxMonoidal where
6161
/-- unit morphism -/

0 commit comments

Comments
 (0)