aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorherbelin2003-12-23 20:34:49 +0000
committerherbelin2003-12-23 20:34:49 +0000
commitc15480ebb20a791388f70f200cb08f83795007d8 (patch)
treee9e97676ebf7703d5c9a9b90b9e59707ab859d8b
parent442febce538255a19467e98ba8b46a43726ea98c (diff)
'of' restait par erreur mot-cle dans psyntax.ml4 en v8
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@5139 85f007b7-540e-0410-9357-904b9bb8a0f7
-rw-r--r--contrib/correctness/psyntax.ml42
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/correctness/psyntax.ml4 b/contrib/correctness/psyntax.ml4
index 402537e509..5acfe8454c 100644
--- a/contrib/correctness/psyntax.ml4
+++ b/contrib/correctness/psyntax.ml4
@@ -492,7 +492,7 @@ GEXTEND Gram
| t = type_v3 -> t ] ]
;
type_v3:
- [ [ IDENT "array"; size = Constr.lconstr; "of"; v = type_v0 ->
+ [ [ IDENT "array"; size = Constr.lconstr; IDENT "of"; v = type_v0 ->
Array (size,v)
| "fun"; bl = binders; c = type_c -> make_arrow bl c
| c = Constr.constr -> TypePure c