Commit d4d19fad authored by Robert Griesemer's avatar Robert Griesemer

Fixed a typo (changed ' -> ") and shortened a production name slightly to...

Fixed a typo (changed ' -> ") and shortened a production name slightly to match the naming convention elsewhere.

SVN=117446
parent 1975ff8b
...@@ -1572,8 +1572,8 @@ cases all referring to communication operations. ...@@ -1572,8 +1572,8 @@ cases all referring to communication operations.
CommClause = CommCase { Statement } . CommClause = CommCase { Statement } .
CommCase = ( "default" | ( "case" ( SendCase | RecvCase) ) ) ":" . CommCase = ( "default" | ( "case" ( SendCase | RecvCase) ) ) ":" .
SendCase = Send . SendCase = Send .
RecvCase = [ identifier '=' ] RecvExpression . RecvCase = [ identifier "=" ] RecvExpr .
RecvExpression = '<' Expression . RecvExpr = "<" Expression .
The select statement evaluates all the channel (pointers) involved. The select statement evaluates all the channel (pointers) involved.
If any of the channels can proceed, the corresponding communication If any of the channels can proceed, the corresponding communication
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment