From: Robert Griesemer Date: Fri, 3 Jun 2011 20:02:35 +0000 (-0700) Subject: ebnf: update comment X-Git-Tag: weekly.2011-06-09~67 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=86b3577a594cad40deb40d0a454f545d0c443f73;p=gostls13.git ebnf: update comment (pointed out by jan.mercl@nic.cz) R=iant, jan.mercl, rsc CC=golang-dev https://golang.org/cl/4515189 --- diff --git a/src/pkg/ebnf/ebnf.go b/src/pkg/ebnf/ebnf.go index 964e1c1b0e..386bfce504 100644 --- a/src/pkg/ebnf/ebnf.go +++ b/src/pkg/ebnf/ebnf.go @@ -8,7 +8,7 @@ // Production = name "=" [ Expression ] "." . // Expression = Alternative { "|" Alternative } . // Alternative = Term { Term } . -// Term = name | token [ "..." token ] | Group | Option | Repetition . +// Term = name | token [ "…" token ] | Group | Option | Repetition . // Group = "(" Expression ")" . // Option = "[" Expression "]" . // Repetition = "{" Expression "}" .