aboutsummaryrefslogtreecommitdiff
path: root/theories/Classes/Morphisms.v
diff options
context:
space:
mode:
Diffstat (limited to 'theories/Classes/Morphisms.v')
-rw-r--r--theories/Classes/Morphisms.v4
1 files changed, 2 insertions, 2 deletions
diff --git a/theories/Classes/Morphisms.v b/theories/Classes/Morphisms.v
index f798ad68af..04688b00f9 100644
--- a/theories/Classes/Morphisms.v
+++ b/theories/Classes/Morphisms.v
@@ -236,7 +236,7 @@ Program Definition complement_proper
intuition.
Qed.
-Hint Extern 1 (Proper (_ ==> _ ==> _) (complement _)) =>
+Hint Extern 1 (Proper _ (complement _)) =>
apply @complement_proper : typeclass_instances.
(** The [inverse] too, actually the [flip] instance is a bit more general. *)
@@ -250,7 +250,7 @@ Program Definition flip_proper
apply mor ; auto.
Qed.
-Hint Extern 1 (Proper (_ ==> _ ==> _) (flip _)) =>
+Hint Extern 1 (Proper _ (flip _)) =>
apply @flip_proper : typeclass_instances.
(** Every Transitive relation gives rise to a binary morphism on [impl],