Skip to content

Commit 7e43f41

Browse files
committed
auto merge of rust-lang#18924 : cakebaker/rust/fix_list, r=steveklabnik
2 parents d3af16b + e8056a4 commit 7e43f41

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/doc/reference.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -2653,9 +2653,10 @@ An expression may have two roles: it always produces a *value*, and it may have
26532653
value, and has effects during *evaluation*. Many expressions contain
26542654
sub-expressions (operands). The meaning of each kind of expression dictates
26552655
several things:
2656-
* Whether or not to evaluate the sub-expressions when evaluating the
2657-
* expression The order in which to evaluate the sub-expressions How to
2658-
* combine the sub-expressions' values to obtain the value of the expression.
2656+
2657+
* Whether or not to evaluate the sub-expressions when evaluating the expression
2658+
* The order in which to evaluate the sub-expressions
2659+
* How to combine the sub-expressions' values to obtain the value of the expression
26592660

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

0 commit comments

Comments
 (0)