aboutsummaryrefslogtreecommitdiff
path: root/theories/Arith/Le.v
diff options
context:
space:
mode:
Diffstat (limited to 'theories/Arith/Le.v')
-rw-r--r--theories/Arith/Le.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/theories/Arith/Le.v b/theories/Arith/Le.v
index 4f17a7a8d3..4e71465452 100644
--- a/theories/Arith/Le.v
+++ b/theories/Arith/Le.v
@@ -80,7 +80,7 @@ Lemma le_elim_rel :
(forall p (q:nat), p <= q -> P p q -> P (S p) (S q)) ->
forall n m, n <= m -> P n m.
Proof.
- intros P H0 HS.
+ intros P H0 HS n.
induction n; trivial.
intros m Le. elim Le; auto with arith.
Qed.