Commit d4d19fad authored by Robert Griesemer's avatar Robert Griesemer

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

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.
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
......
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