manual: remove 'analogy' between return and return. meaningless.

This commit is contained in:
Graydon Hoare 2012-10-11 17:50:10 -07:00
parent 544d36bc4d
commit 73d4417dc7
1 changed files with 1 additions and 2 deletions

View File

@ -2330,8 +2330,7 @@ return_expr : "return" expr ? ;
~~~~~~~~
Return expressions are denoted with the keyword `return`. Evaluating a `return`
expression^[A `return` expression is analogous to a `return` expression
in the C family.] moves its argument into the output slot of the current
expression moves its argument into the output slot of the current
function, destroys the current function activation frame, and transfers
control to the caller frame.