aboutsummaryrefslogtreecommitdiffhomepage
path: root/theories/Wellfounded/Disjoint_Union.v
diff options
context:
space:
mode:
Diffstat (limited to 'theories/Wellfounded/Disjoint_Union.v')
-rw-r--r--theories/Wellfounded/Disjoint_Union.v8
1 files changed, 4 insertions, 4 deletions
diff --git a/theories/Wellfounded/Disjoint_Union.v b/theories/Wellfounded/Disjoint_Union.v
index f6ce84f98..785d623b4 100644
--- a/theories/Wellfounded/Disjoint_Union.v
+++ b/theories/Wellfounded/Disjoint_Union.v
@@ -9,8 +9,8 @@
(*i $Id$ i*)
(** Author: Cristina Cornes
- From : Constructing Recursion Operators in Type Theory
- L. Paulson JSC (1986) 2, 325-355 *)
+ From : Constructing Recursion Operators in Type Theory
+ L. Paulson JSC (1986) 2, 325-355 *)
Require Import Relation_Operators.
@@ -20,7 +20,7 @@ Section Wf_Disjoint_Union.
Variable leB : B -> B -> Prop.
Notation Le_AsB := (le_AsB A B leA leB).
-
+
Lemma acc_A_sum : forall x:A, Acc leA x -> Acc Le_AsB (inl B x).
Proof.
induction 1.
@@ -47,7 +47,7 @@ Section Wf_Disjoint_Union.
destruct a as [a| b].
apply (acc_A_sum a).
apply (H a).
-
+
apply (acc_B_sum H b).
apply (H0 b).
Qed.