aboutsummaryrefslogtreecommitdiffhomepage
path: root/theories/MSets/MSetProperties.v
diff options
context:
space:
mode:
authorGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2010-06-08 13:56:14 +0000
committerGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2010-06-08 13:56:14 +0000
commitd14635b0c74012e464aad9e77aeeffda0f1ef154 (patch)
treebb913fa1399a1d4c7cdbd403e10c4efcc58fcdb1 /theories/MSets/MSetProperties.v
parentf4c5934181c3e036cb77897ad8c8a192c999f6ad (diff)
Made option "Automatic Introduction" active by default before too many
people use the undocumented "Lemma foo x : t" feature in a way incompatible with this activation. git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@13090 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'theories/MSets/MSetProperties.v')
-rw-r--r--theories/MSets/MSetProperties.v4
1 files changed, 2 insertions, 2 deletions
diff --git a/theories/MSets/MSetProperties.v b/theories/MSets/MSetProperties.v
index 14fe097a9..9cd28e171 100644
--- a/theories/MSets/MSetProperties.v
+++ b/theories/MSets/MSetProperties.v
@@ -947,12 +947,12 @@ Module OrdProperties (M:Sets).
Instance gtb_compat x : Proper (E.eq==>Logic.eq) (gtb x).
Proof.
- intros x a b H. unfold gtb. rewrite H; auto.
+ intros a b H. unfold gtb. rewrite H; auto.
Qed.
Instance leb_compat x : Proper (E.eq==>Logic.eq) (leb x).
Proof.
- intros x a b H; unfold leb. rewrite H; auto.
+ intros a b H; unfold leb. rewrite H; auto.
Qed.
Hint Resolve gtb_compat leb_compat.