diff options
author | herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7> | 2006-01-22 21:11:17 +0000 |
---|---|---|
committer | herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7> | 2006-01-22 21:11:17 +0000 |
commit | 94ae137c5c81b8242bb53e3fdecac6a908a56363 (patch) | |
tree | cfc704d783212ae4e3d7bc23d98b9ef75d5b33d9 /theories/Init | |
parent | aedda184fcb6c15f7ed41b9949c92012b4866cb0 (diff) |
Application de la suggestion de Nicolas Magaud (#1060)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@7917 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'theories/Init')
-rwxr-xr-x | theories/Init/Wf.v | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/theories/Init/Wf.v b/theories/Init/Wf.v index 5a05f7b65..8169bca1e 100755 --- a/theories/Init/Wf.v +++ b/theories/Init/Wf.v @@ -97,7 +97,7 @@ Section Well_founded. Section FixPoint. -Variable P : A -> Set. +Variable P : A -> Type. Variable F : forall x:A, (forall y:A, R y x -> P y) -> P x. Fixpoint Fix_F (x:A) (r:Acc x) {struct r} : P x := |