From: Robert Griesemer
Date: Thu, 23 Apr 2009 21:42:21 +0000 (-0700)
Subject: fixed typo in EBNF of ENBF
X-Git-Tag: weekly.2009-11-06~1770
X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=88a0c4071d2911b3fa891e260d3c447796c23c4d;p=gostls13.git
fixed typo in EBNF of ENBF
R=iant
DELTA=1 (0 added, 0 deleted, 1 changed)
OCL=27801
CL=27806
---
diff --git a/doc/go_spec.html b/doc/go_spec.html
index 4c6d26e048..f86a293d57 100644
--- a/doc/go_spec.html
+++ b/doc/go_spec.html
@@ -56,7 +56,7 @@ The syntax is specified using Extended Backus-Naur Form (EBNF):
-Production = production_name "=" Expression .
+Production = production_name "=" Expression "." .
Expression = Alternative { "|" Alternative } .
Alternative = Term { Term } .
Term = production_name | token [ "..." token ] | Group | Option | Repetition .