summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorCamelid <camelidcamel@gmail.com>2020-09-14 19:13:44 -0700
committerJoshua Nelson <joshua@yottadb.com>2020-09-17 11:35:14 -0400
commit9d5753910d3c5ffa9dbf448f1779cea17545306e (patch)
tree4b25e820cc12033964fbe53b42458f67125f29e8 /src/doc/rustc-dev-guide
parentc72daace49a02ead50e0f648cf2d463ad267373d (diff)
downloadrust-9d5753910d3c5ffa9dbf448f1779cea17545306e.tar.gz
rust-9d5753910d3c5ffa9dbf448f1779cea17545306e.zip
Revert "Mention that places are sometimes called "lvalues""
This reverts commit bf5e1c451de505fa453672c1168b09db07a145cb.
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/mir/index.md3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/doc/rustc-dev-guide/src/mir/index.md b/src/doc/rustc-dev-guide/src/mir/index.md
index fd55046ec8d..f771fa0ede5 100644
--- a/src/doc/rustc-dev-guide/src/mir/index.md
+++ b/src/doc/rustc-dev-guide/src/mir/index.md
@@ -44,8 +44,7 @@ This section introduces the key concepts of MIR, summarized here:
   leading underscore, like `_1`. There is also a special "local"
   (`_0`) allocated to store the return value.
 - **Places:** expressions that identify a location in memory, like `_1` or
-  `_1.f`. (Some people call these "lvalues"; the "l" meaning that they occur on
-  the left-hand side of an assignment.)
+  `_1.f`.
 - **Rvalues:** expressions that produce a value. The "R" stands for
   the fact that these are the "right-hand side" of an assignment.
   - **Operands:** the arguments to an rvalue, which can either be a