aboutsummaryrefslogtreecommitdiffhomepage
path: root/theories/MSets/MSetFacts.v
diff options
context:
space:
mode:
Diffstat (limited to 'theories/MSets/MSetFacts.v')
-rw-r--r--theories/MSets/MSetFacts.v4
1 files changed, 2 insertions, 2 deletions
diff --git a/theories/MSets/MSetFacts.v b/theories/MSets/MSetFacts.v
index b61bf3fe7..4e17618f7 100644
--- a/theories/MSets/MSetFacts.v
+++ b/theories/MSets/MSetFacts.v
@@ -488,13 +488,13 @@ Qed.
Generalizable Variables f.
-Instance filter_equal `(Proper _ (E.eq==>Logic.eq) f) :
+Instance filter_equal : forall `(Proper _ (E.eq==>Logic.eq) f),
Proper (Equal==>Equal) (filter f).
Proof.
intros f Hf s s' Hs a. rewrite !filter_iff, Hs by auto; intuition.
Qed.
-Instance filter_subset `(Proper _ (E.eq==>Logic.eq) f) :
+Instance filter_subset : forall `(Proper _ (E.eq==>Logic.eq) f),
Proper (Subset==>Subset) (filter f).
Proof.
intros f Hf s s' Hs a. rewrite !filter_iff, Hs by auto; intuition.