about summary refs log tree commit diff
diff options
context:
space:
mode:
authorDaniel Hofstetter <daniel.hofstetter@42dh.com>2014-11-13 16:05:07 +0100
committerDaniel Hofstetter <daniel.hofstetter@42dh.com>2014-11-13 16:05:07 +0100
commite8056a452fc89ba01f198f245c1103e4b759bb7d (patch)
tree8b97d715f70f6c18da00c864bbf67bc4a3332cc2
parent82f383839c7cc0ce66d7cfbd400182b535029f0f (diff)
downloadrust-e8056a452fc89ba01f198f245c1103e4b759bb7d.tar.gz
rust-e8056a452fc89ba01f198f245c1103e4b759bb7d.zip
Reference: Fix list in Expressions section
-rw-r--r--src/doc/reference.md7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/doc/reference.md b/src/doc/reference.md
index 1c338aa8118..d05705562d2 100644
--- a/src/doc/reference.md
+++ b/src/doc/reference.md
@@ -2653,9 +2653,10 @@ An expression may have two roles: it always produces a *value*, and it may have
 value, and has effects during *evaluation*. Many expressions contain
 sub-expressions (operands). The meaning of each kind of expression dictates
 several things:
-  * Whether or not to evaluate the sub-expressions when evaluating the
-  * expression The order in which to evaluate the sub-expressions How to
-  * combine the sub-expressions' values to obtain the value of the expression.
+
+* Whether or not to evaluate the sub-expressions when evaluating the expression
+* The order in which to evaluate the sub-expressions
+* How to combine the sub-expressions' values to obtain the value of the expression
 
 In this way, the structure of expressions dictates the structure of execution.
 Blocks are just another kind of expression, so blocks, statements, expressions,