aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--theories/Relations/Relation_Operators.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/theories/Relations/Relation_Operators.v b/theories/Relations/Relation_Operators.v
index 6e686d5c8..269949ba6 100644
--- a/theories/Relations/Relation_Operators.v
+++ b/theories/Relations/Relation_Operators.v
@@ -56,7 +56,7 @@ Section Reflexive_Closure.
Inductive clos_refl (x: A) : A -> Prop :=
| r_step (y:A) : R x y -> clos_refl x y
- | r_refl (y z:A) : clos_refl x x.
+ | r_refl : clos_refl x x.
End Reflexive_Closure.