From: Robert Griesemer Date: Wed, 2 Jul 2008 00:18:28 +0000 (-0700) Subject: - more minor fixes X-Git-Tag: weekly.2009-11-06~3577 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=ceb01373bc144e9f14da4ca2169b09949a0aacfc;p=gostls13.git - more minor fixes SVN=125574 --- diff --git a/doc/go_lang.txt b/doc/go_lang.txt index 4d295e4381..032715aea0 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 .