]> Cypherpunks repositories - gostls13.git/commitdiff
gc: fix comment
authorRuss Cox <rsc@golang.org>
Sun, 13 Dec 2009 20:11:56 +0000 (12:11 -0800)
committerRuss Cox <rsc@golang.org>
Sun, 13 Dec 2009 20:11:56 +0000 (12:11 -0800)
R=gri
CC=golang-dev
https://golang.org/cl/174077

src/cmd/gc/go.y

index 6e100d1f4199a1da8d338933c84a4767032e4d9c..2fd36e751e82d08e188c56f7d5315db9cf48a49a 100644 (file)
@@ -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.
  *