Skip to content

Commit ceafa54

Browse files
authored
Merge pull request #171 from proux01/rocq21849
Adapt to rocq-prover/rocq#21849
2 parents b4517ba + a777574 commit ceafa54

File tree

8 files changed

+18
-18
lines changed

8 files changed

+18
-18
lines changed

Adjunction/Hom.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,4 +279,4 @@ Qed.
279279

280280
End AdjunctionHom.
281281

282-
Arguments Adjunction_Hom {C D} F%functor U%functor.
282+
Arguments Adjunction_Hom {C D} F%_functor U%_functor.

Adjunction/Natural/Transformation.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Class Adjunction_Transform := {
2424

2525
End AdjunctionTransform.
2626

27-
Arguments Adjunction_Transform {C D} F%functor U%functor.
27+
Arguments Adjunction_Transform {C D} F%_functor U%_functor.
2828

2929
Declare Scope adjunction_scope.
3030
Declare Scope adjunction_type_scope.

Structure/End.v

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ Class End `(F : C^op ∏ C ⟶ D) := {
1414
wedge_map[end_wedge] ∘ u ≈ @wedge_map _ _ _ W x
1515
}.
1616

17-
Arguments End {_%category _%category} F%functor.
18-
Arguments end_wedge {_%category _%category} F%functor {_}.
17+
Arguments End {_%_category _%_category} F%_functor.
18+
Arguments end_wedge {_%_category _%_category} F%_functor {_}.
1919

2020
Coercion wedge_obj `(F : C^op ∏ C ⟶ D) (E : End F) := @end_wedge _ _ _ E.
2121

Structure/Pullback/Limit.v

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ Require Import Category.Instance.Roof.
1212
Generalizable All Variables.
1313

1414
Definition Pullback_Limit {C : Category} (F : Cospan C) := Limit F.
15-
Arguments Pullback_Limit {_%category} F%functor /.
15+
Arguments Pullback_Limit {_%_category} F%_functor /.
1616

1717
Definition Pushout_Limit {C : Category} (F : Span C) := Colimit F.
18-
Arguments Pushout_Limit {_%category} F%functor /.
18+
Arguments Pushout_Limit {_%_category} F%_functor /.
1919

2020
Program Definition Pullback_to_Universal {C : Category}
2121
(F : Cospan C) (P : Pullback_Limit F) :

Theory/Adjunction.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ Proof. intros; now rewrites. Qed.
248248

249249
End Adjunction.
250250

251-
Arguments Adjunction {C D} F%functor U%functor.
251+
Arguments Adjunction {C D} F%_functor U%_functor.
252252

253253
Declare Scope adjunction_scope.
254254
Declare Scope adjunction_type_scope.

Theory/Category.v

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ Delimit Scope object_scope with object.
6767
Delimit Scope homset_scope with homset.
6868
Delimit Scope morphism_scope with morphism.
6969

70-
Arguments dom {_%category _%object _%object} _%morphism.
71-
Arguments cod {_%category _%object _%object} _%morphism.
70+
Arguments dom {_%_category _%_object _%_object} _%_morphism.
71+
Arguments cod {_%_category _%_object _%_object} _%_morphism.
7272

7373
Notation "obj[ C ]" := (@obj C%category)
7474
(at level 0, format "obj[ C ]") : type_scope.
@@ -178,12 +178,12 @@ Proof. split; auto. Qed.
178178

179179
End Category.
180180

181-
Arguments dom {_%category _%object _%object} _%morphism.
182-
Arguments cod {_%category _%object _%object} _%morphism.
183-
Arguments id_left {_%category _%object _%object} _%morphism.
184-
Arguments id_right {_%category _%object _%object} _%morphism.
185-
Arguments comp_assoc {_%category _%object _%object _%object _%object}
186-
_%morphism _%morphism _%morphism.
181+
Arguments dom {_%_category _%_object _%_object} _%_morphism.
182+
Arguments cod {_%_category _%_object _%_object} _%_morphism.
183+
Arguments id_left {_%_category _%_object _%_object} _%_morphism.
184+
Arguments id_right {_%_category _%_object _%_object} _%_morphism.
185+
Arguments comp_assoc {_%_category _%_object _%_object _%_object _%_object}
186+
_%_morphism _%_morphism _%_morphism.
187187

188188
#[export]
189189
Program Instance hom_preorder {C : Category} : PreOrder (@hom C) := {

Theory/Functor.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Notation "C ⟶ D" := (@Functor C%category D%category)
4545
(at level 90, right associativity) : functor_type_scope.
4646

4747
Arguments fmap
48-
{C%category D%category Functor%functor x%object y%object} f%morphism.
48+
{C%_category D%_category Functor%_functor x%_object y%_object} f%_morphism.
4949

5050
Infix "<$>" := fmap
5151
(at level 29, left associativity, only parsing) : morphism_scope.

Theory/Isomorphism.v

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,8 +144,8 @@ Notation "x ≅ y" := (@Isomorphism _%category x%object y%object)
144144
Notation "x ≅[ C ] y" := (@Isomorphism C%category x%object y%object)
145145
(at level 91, only parsing) : isomorphism_scope.
146146

147-
Arguments to {_%category x%object y%object} _%morphism.
148-
Arguments from {_%category x%object y%object} _%morphism.
147+
Arguments to {_%_category x%_object y%_object} _%_morphism.
148+
Arguments from {_%_category x%_object y%_object} _%_morphism.
149149
Arguments iso_to_from {_ _ _} _.
150150
Arguments iso_from_to {_ _ _} _.
151151

0 commit comments

Comments
 (0)