File tree Expand file tree Collapse file tree
Mathlib/CategoryTheory/Action Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -334,13 +334,13 @@ def resComp {G H K : Type u} [Monoid G] [Monoid H] [Monoid K]
334334-- TODO promote `res` to a pseudofunctor from
335335-- the locally discrete bicategory constructed from `Monᵒᵖ` to `Cat`, sending `G` to `Action V G`.
336336
337- variable {G H : MonCat.{u}} (f : G ⟶ H)
337+ variable {G H : Type u} [Monoid G] [Monoid H] (f : G →* H)
338338
339339/-- The functor from `Action V H` to `Action V G` induced by a morphism `f : G → H` is faithful. -/
340340instance : (res V f).Faithful where
341341 map_injective {X} {Y} g₁ g₂ h := by
342342 ext
343- rw [← res_map_hom _ _ g₁, ← res_map_hom _ _ g₂, h]
343+ rw [← res_map_hom _ f g₁, ← res_map_hom _ f g₂, h]
344344
345345/-- The functor from `Action V H` to `Action V G` induced by a morphism `f : G → H` is full
346346if `f` is surjective. -/
You can’t perform that action at this time.
0 commit comments