File tree Expand file tree Collapse file tree
Mathlib/CategoryTheory/Limits Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -691,7 +691,7 @@ variable (J C)
691691/-- `C` has colimits of shape `J` if there exists a colimit for every functor `F : J ⥤ C`. -/
692692class HasColimitsOfShape : Prop where
693693 /-- All `F : J ⥤ C` have colimits for a fixed `J` -/
694- HasColimit : ∀ F : J ⥤ C, HasColimit F := by infer_instance
694+ hasColimit : ∀ F : J ⥤ C, HasColimit F := by infer_instance
695695#align category_theory.limits.has_colimits_of_shape CategoryTheory.Limits.HasColimitsOfShape
696696
697697/-- `C` has all colimits of size `v₁ u₁` (`HasColimitsOfSize.{v₁ u₁} C`)
@@ -719,7 +719,7 @@ variable {J C}
719719-- see Note [lower instance priority]
720720instance (priority := 100 ) hasColimitOfHasColimitsOfShape {J : Type u₁} [Category.{v₁} J]
721721 [HasColimitsOfShape J C] (F : J ⥤ C) : HasColimit F :=
722- HasColimitsOfShape.HasColimit F
722+ HasColimitsOfShape.hasColimit F
723723#align category_theory.limits.has_colimit_of_has_colimits_of_shape CategoryTheory.Limits.hasColimitOfHasColimitsOfShape
724724
725725-- see Note [lower instance priority]
You can’t perform that action at this time.
0 commit comments