diff options
Diffstat (limited to 'theories')
-rw-r--r-- | theories/Classes/Morphisms.v | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/theories/Classes/Morphisms.v b/theories/Classes/Morphisms.v index 24e568d29..5ac6d8ee5 100644 --- a/theories/Classes/Morphisms.v +++ b/theories/Classes/Morphisms.v @@ -51,13 +51,13 @@ Definition respectful (A B : Type) Delimit Scope signature_scope with signature. Notation " R ++> R' " := (@respectful _ _ (R%signature) (R'%signature)) - (right associativity, at level 90) : signature_scope. + (right associativity, at level 55) : signature_scope. Notation " R ==> R' " := (@respectful _ _ (R%signature) (R'%signature)) - (right associativity, at level 90) : signature_scope. + (right associativity, at level 55) : signature_scope. Notation " R --> R' " := (@respectful _ _ (inverse (R%signature)) (R'%signature)) - (right associativity, at level 90) : signature_scope. + (right associativity, at level 55) : signature_scope. Arguments Scope respectful [type_scope type_scope signature_scope signature_scope]. |