From ceb01373bc144e9f14da4ca2169b09949a0aacfc Mon Sep 17 00:00:00 2001 From: Robert Griesemer Date: Tue, 1 Jul 2008 17:18:28 -0700 Subject: [PATCH] - more minor fixes SVN=125574 --- doc/go_lang.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/go_lang.txt b/doc/go_lang.txt index 4d295e4381a..032715aea08 100644 --- a/doc/go_lang.txt +++ b/doc/go_lang.txt @@ -1734,7 +1734,7 @@ will proceed. It looks similar to a switch statement but with the cases all referring to communication operations. SelectStat = "select" "{" { CommClause } "}" . - CommClause = CommCase { Statement } . + CommClause = CommCase [ StatementList [ ";" ] ] . CommCase = ( "default" | ( "case" ( SendCase | RecvCase) ) ) ":" . SendCase = Send . RecvCase = [ identifier "=" ] RecvExpr .