From: Russ Cox Date: Sun, 13 Dec 2009 20:11:56 +0000 (-0800) Subject: gc: fix comment X-Git-Tag: weekly.2009-12-22~76 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=978c3e96d1e1b1e5d1cd93430bfff8855c3b2bf5;p=gostls13.git gc: fix comment R=gri CC=golang-dev https://golang.org/cl/174077 --- diff --git a/src/cmd/gc/go.y b/src/cmd/gc/go.y index 6e100d1f41..2fd36e751e 100644 --- a/src/cmd/gc/go.y +++ b/src/cmd/gc/go.y @@ -7,9 +7,8 @@ * * The Go semicolon rules are: * - * 1. all statements and declarations are terminated by semicolons - * 2. semicolons can be omitted before and after the closing ) or } - * on a list of statements or declarations. + * 1. all statements and declarations are terminated by semicolons. + * 2. semicolons can be omitted before a closing ) or }. * 3. semicolons are inserted by the lexer before a newline * following a specific list of tokens. *