aboutsummaryrefslogtreecommitdiffhomepage
path: root/theories/Relations
diff options
context:
space:
mode:
authorGravatar ppedrot <ppedrot@85f007b7-540e-0410-9357-904b9bb8a0f7>2013-07-31 19:50:48 +0000
committerGravatar ppedrot <ppedrot@85f007b7-540e-0410-9357-904b9bb8a0f7>2013-07-31 19:50:48 +0000
commit1ce0550e04870a5a93d464bab8c2be6fb5d2702d (patch)
tree77acb2b1b8ddd91ba3f8b2a3687fda1c62193c5f /theories/Relations
parent1f2e874fec0e5818a54aca92f86554d40f689771 (diff)
Typo in definition clos_refl
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@16644 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'theories/Relations')
-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.