aboutsummaryrefslogtreecommitdiffhomepage
path: root/theories/Relations
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/Relations
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/Relations')
-rw-r--r--theories/Relations/Rstar.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/theories/Relations/Rstar.v b/theories/Relations/Rstar.v
index 8dfacf2cf..095c94cfe 100644
--- a/theories/Relations/Rstar.v
+++ b/theories/Relations/Rstar.v
@@ -87,7 +87,7 @@ Section Rstar.
(** Property of Commutativity of two relations *)
- Definition commut (A:Set) (R1 R2:A -> A -> Prop) :=
+ Definition commut (A:Type) (R1 R2:A -> A -> Prop) :=
forall x y:A,
R1 y x -> forall z:A, R2 z y -> exists2 y' : A, R2 y' x & R1 z y'.