Skip to content

Commit 02315d3

Browse files
committed
Change sub-expression to operand in a few places
1 parent 9379f41 commit 02315d3

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/expressions.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,9 @@ value, and has effects during *evaluation*. Many expressions contain
4848
sub-expressions, called the *operands* of the expression. The meaning of each
4949
kind of expression dictates several things:
5050

51-
* Whether or not to evaluate the sub-expressions when evaluating the expression
52-
* The order in which to evaluate the sub-expressions
53-
* How to combine the sub-expressions' values to obtain the value of the
54-
expression
51+
* Whether or not to evaluate the operands when evaluating the expression
52+
* The order in which to evaluate the operands
53+
* How to combine the operands' values to obtain the value of the expression
5554

5655
In this way, the structure of expressions dictates the structure of execution.
5756
Blocks are just another kind of expression, so blocks, statements, expressions,

0 commit comments

Comments
 (0)