aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfilliatr1999-12-16 15:01:18 +0000
committerfilliatr1999-12-16 15:01:18 +0000
commitfb15b95d4d430ca2394a2df8da32cab8891f7e66 (patch)
tree78c78fcd7096d20848717de1c9d4c37b9731cd69
parent7ea13f14b30b74d644458464e3cd56d45b303f69 (diff)
erreurs de syntax :$
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@261 85f007b7-540e-0410-9357-904b9bb8a0f7
-rw-r--r--theories/Init/SpecifSyntax.v8
1 files changed, 4 insertions, 4 deletions
diff --git a/theories/Init/SpecifSyntax.v b/theories/Init/SpecifSyntax.v
index 1b78cd5229..0c8700ceb1 100644
--- a/theories/Init/SpecifSyntax.v
+++ b/theories/Init/SpecifSyntax.v
@@ -8,18 +8,18 @@ Require Export Specif.
Grammar command command1 :=
sig [ "{" lcommand($lc) ":" lcommand($c1) "|" lcommand($c2) "}" ]
- -> [<<(sig $c1 [$lc:$c1]$c2)>>]
+ -> [<<(sig $c1 [$lc : $c1]$c2)>>]
| sig2 [ "{" lcommand($lc) ":" lcommand($c1)
"|" lcommand($c2) "&" lcommand($c3) "}" ]
- -> [<<(sig2 $c1 [$lc:$c1]$c2 [$lc:$c1]$c3)>>]
+ -> [<<(sig2 $c1 [$lc : $c1]$c2 [$lc : $c1]$c3)>>]
| sigS [ "{" lcommand($lc) ":" lcommand($c1) "&" lcommand($c2) "}" ]
- -> [<<(sigS $c1 [$lc:$c1]$c2)>>]
+ -> [<<(sigS $c1 [$lc : $c1]$c2)>>]
| sigS2 [ "{" lcommand($lc) ":" lcommand($c1)
"&" lcommand($c2) "&" lcommand($c3) "}" ]
- -> [<<(sigS2 $c1 [$lc:$c1]$c2 [$lc:$c1]$c3)>>]
+ -> [<<(sigS2 $c1 [$lc : $c1]$c2 [$lc : $c1]$c3)>>]
| squash [ "{" lcommand($lc) "}" ] -> [(SQUASH $lc)].