From: Robert Griesemer Date: Fri, 2 May 2008 01:47:44 +0000 (-0700) Subject: Fixed a typo (changed ' -> ") and shortened a production name slightly to match the... X-Git-Tag: weekly.2009-11-06~3787 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=d4d19fad2fa14f3d933b587bf340bb6696fce54c;p=gostls13.git Fixed a typo (changed ' -> ") and shortened a production name slightly to match the naming convention elsewhere. SVN=117446 --- diff --git a/doc/go_lang.txt b/doc/go_lang.txt index 132824e14e..248cb1eb51 100644 --- a/doc/go_lang.txt +++ b/doc/go_lang.txt @@ -1572,8 +1572,8 @@ cases all referring to communication operations. CommClause = CommCase { Statement } . CommCase = ( "default" | ( "case" ( SendCase | RecvCase) ) ) ":" . SendCase = Send . - RecvCase = [ identifier '=' ] RecvExpression . - RecvExpression = '<' Expression . + RecvCase = [ identifier "=" ] RecvExpr . + RecvExpr = "<" Expression . The select statement evaluates all the channel (pointers) involved. If any of the channels can proceed, the corresponding communication