1
0
mirror of https://github.com/golang/go synced 2024-11-22 00:34:40 -07:00

fixed typo in EBNF of ENBF

R=iant
DELTA=1  (0 added, 0 deleted, 1 changed)
OCL=27801
CL=27806
This commit is contained in:
Robert Griesemer 2009-04-23 14:42:21 -07:00
parent 258a08ed8f
commit 88a0c4071d

View File

@ -56,7 +56,7 @@ The syntax is specified using Extended Backus-Naur Form (EBNF):
</p>
<pre class="grammar">
Production = production_name "=" Expression .
Production = production_name "=" Expression "." .
Expression = Alternative { "|" Alternative } .
Alternative = Term { Term } .
Term = production_name | token [ "..." token ] | Group | Option | Repetition .