diff options
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 := |