aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--theories/Setoids/Setoid.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/theories/Setoids/Setoid.v b/theories/Setoids/Setoid.v
index b10c4f3768..cec1033fdf 100644
--- a/theories/Setoids/Setoid.v
+++ b/theories/Setoids/Setoid.v
@@ -33,7 +33,7 @@ Defined.
Definition Seq_trans A Aeq (s : Setoid_Theory A Aeq) : forall x y z:A, Aeq x y -> Aeq y z -> Aeq x z.
Proof.
- unfold Setoid_Theory in s. intros ; transitivity y ; assumption.
+ unfold Setoid_Theory in s. intros x y z H0 H1 ; transitivity y ; assumption.
Defined.
(** Some tactics for manipulating Setoid Theory not officially