aboutsummaryrefslogtreecommitdiffhomepage
path: root/theories/Wellfounded/Inclusion.v
diff options
context:
space:
mode:
authorGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2007-02-12 10:31:53 +0000
committerGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2007-02-12 10:31:53 +0000
commit283b030353bee1a0a87cb6b67d492adb5dd31979 (patch)
treea50d82178dc51bb372c9811f4d91e114fead2dc3 /theories/Wellfounded/Inclusion.v
parente7492417f54a4210da1cdf909699621e4f9b890c (diff)
Autres passages de Set à Type dans Relations et Wellfounded
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@9642 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'theories/Wellfounded/Inclusion.v')
-rw-r--r--theories/Wellfounded/Inclusion.v4
1 files changed, 2 insertions, 2 deletions
diff --git a/theories/Wellfounded/Inclusion.v b/theories/Wellfounded/Inclusion.v
index 7c69b6765..e72b1e11d 100644
--- a/theories/Wellfounded/Inclusion.v
+++ b/theories/Wellfounded/Inclusion.v
@@ -13,7 +13,7 @@
Require Import Relation_Definitions.
Section WfInclusion.
- Variable A : Set.
+ Variable A : Type.
Variables R1 R2 : A -> A -> Prop.
Lemma Acc_incl : inclusion A R1 R2 -> forall z:A, Acc R2 z -> Acc R1 z.
@@ -29,4 +29,4 @@ Section WfInclusion.
unfold well_founded in |- *; auto with sets.
Qed.
-End WfInclusion. \ No newline at end of file
+End WfInclusion.