aboutsummaryrefslogtreecommitdiffhomepage
path: root/theories/Init/Datatypes.v
diff options
context:
space:
mode:
authorGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2003-10-28 19:37:10 +0000
committerGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2003-10-28 19:37:10 +0000
commit1c1718adef3fd0562a6ff046f4b79cfc0012413d (patch)
treecbe7710e8f7270145598c6ef25f6ad9a2ef559ef /theories/Init/Datatypes.v
parente4e21cdbbb6b85104788b3d3d337da3e2d9f3e4a (diff)
Passage de la notations de paire dans core_scope
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@4737 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'theories/Init/Datatypes.v')
-rwxr-xr-xtheories/Init/Datatypes.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/theories/Init/Datatypes.v b/theories/Init/Datatypes.v
index bbc59da42..72758ffe0 100755
--- a/theories/Init/Datatypes.v
+++ b/theories/Init/Datatypes.v
@@ -78,7 +78,7 @@ Inductive prod [A,B:Set] : Set := pair : A -> B -> (prod A B).
Add Printing Let prod.
Notation "x * y" := (prod x y) : type_scope.
-Notation "( x , y )" := (pair ? ? x y) V8only "x , y".
+Notation "( x , y )" := (pair ? ? x y) : core_scope V8only "x , y".
Section projections.
Variables A,B:Set.