aboutsummaryrefslogtreecommitdiffhomepage
path: root/theories/Init/Notations.v
diff options
context:
space:
mode:
authorGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2004-12-06 11:34:35 +0000
committerGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2004-12-06 11:34:35 +0000
commit4cbbe58194c9ed798171e6ae06046fd77d074930 (patch)
treefda8a980f325047525fc1e31c98359f3cf867f02 /theories/Init/Notations.v
parent2f48ebef673d87cb29f29b0967c34357c8aea9cd (diff)
Inutile de réserver les notations à base de '{ }'
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@6410 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'theories/Init/Notations.v')
-rw-r--r--theories/Init/Notations.v9
1 files changed, 3 insertions, 6 deletions
diff --git a/theories/Init/Notations.v b/theories/Init/Notations.v
index 845837e48..fe24706e4 100644
--- a/theories/Init/Notations.v
+++ b/theories/Init/Notations.v
@@ -54,15 +54,12 @@ Reserved Notation "x ^ y" (at level 30, right associativity).
Reserved Notation "( x , y , .. , z )" (at level 0).
(** Notation "{ x }" is reserved and has a special status as component
- of other notations; it is at level 0 to factor with {x:A|P} etc *)
+ of other notations such as "{ A } + { B }" and "A + { B }" (which
+ are at the same level than "x + y");
+ "{ x }" is at level 0 to factor with "{ x : A | P }" *)
Reserved Notation "{ x }" (at level 0, x at level 99).
-(** Notations for sum-types *)
-
-Reserved Notation "{ A } + { B }" (at level 50, left associativity).
-Reserved Notation "A + { B }" (at level 50, left associativity).
-
(** Notations for sigma-types or subsets *)
Reserved Notation "{ x : A | P }" (at level 0, x at level 99).