aboutsummaryrefslogtreecommitdiffhomepage
path: root/theories/Init
diff options
context:
space:
mode:
authorGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2002-11-28 19:48:20 +0000
committerGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2002-11-28 19:48:20 +0000
commit6aedc1b6c4047a206e2e02aea77cab23afa534a6 (patch)
tree6f19ce87151f62f414ce1cdb9c0a81502480179c /theories/Init
parent13ecb862956076e70e6d1514abf36e5ad98ba1e9 (diff)
Essai de suppression du caractere d'echappement des string
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@3327 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'theories/Init')
-rw-r--r--theories/Init/LogicSyntax.v4
1 files changed, 2 insertions, 2 deletions
diff --git a/theories/Init/LogicSyntax.v b/theories/Init/LogicSyntax.v
index fda1cde03..fa5d8b958 100644
--- a/theories/Init/LogicSyntax.v
+++ b/theories/Init/LogicSyntax.v
@@ -17,8 +17,8 @@ Notation "< P , Q > { p , q }" := (conj P Q p q) (at level 1).
Notation "~ x" := (not x) (at level 5, right associativity).
Notation "x = y" := (eq ? x y) (at level 5, no associativity).
-Infix RIGHTA 6 "/\\" and.
-Infix RIGHTA 7 "\\/" or.
+Infix RIGHTA 6 "/\" and.
+Infix RIGHTA 7 "\/" or.
Infix RIGHTA 8 "<->" iff.
Notation "'IF' c1 'then' c2 'else' c3" := (IF c1 c2 c3)