aboutsummaryrefslogtreecommitdiff
path: root/theories/Lists
diff options
context:
space:
mode:
authorbarras2003-10-22 10:35:04 +0000
committerbarras2003-10-22 10:35:04 +0000
commit6475388a91c899e8bcf7b69b223180025d4f85ff (patch)
tree6031dc6e72bb676fa9d9e4f9f2be8ab50c1ca2e3 /theories/Lists
parent9da09a4da10aa36699538bde01086172c64689eb (diff)
reorganisation des niveaux (ex: = est a 70)
Hint Destruct: syntaxe similaire aux autres hints... git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@4696 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'theories/Lists')
-rw-r--r--theories/Lists/PolyList.v8
1 files changed, 4 insertions, 4 deletions
diff --git a/theories/Lists/PolyList.v b/theories/Lists/PolyList.v
index 4168655fea..50b203d4e5 100644
--- a/theories/Lists/PolyList.v
+++ b/theories/Lists/PolyList.v
@@ -20,7 +20,7 @@ Set Implicit Arguments.
Inductive list : Set := nil : list | cons : A -> list -> list.
Infix "::" cons (at level 7, right associativity) : list_scope
- V8only (at level 45, right associativity).
+ V8only (at level 60, right associativity).
Open Scope list_scope.
@@ -44,7 +44,7 @@ Fixpoint app [l:list] : list -> list
end.
Infix RIGHTA 7 "^" app : list_scope
- V8only RIGHTA 45 "++".
+ V8only RIGHTA 60 "++".
Lemma app_nil_end : (l:list)l=(l^nil).
Proof.
@@ -635,8 +635,8 @@ V7only [Implicits nil [].].
(** Exporting list notations *)
-V8Infix "::" cons (at level 45, right associativity) : list_scope.
+V8Infix "::" cons (at level 60, right associativity) : list_scope.
-Infix RIGHTA 7 "^" app : list_scope V8only RIGHTA 45 "++".
+Infix RIGHTA 7 "^" app : list_scope V8only RIGHTA 60 "++".
Open Scope list_scope.