about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRalf Jung <post@ralfj.de>2018-10-25 08:58:12 +0200
committerRalf Jung <post@ralfj.de>2018-10-25 08:58:12 +0200
commit431b254ffbcadaf08ec01d2041db0681ba0e0bb1 (patch)
treead124fa5fa8ea502f3435a79f8397d0538b215f8
parentf99911a4a0bead7dd1f9ef2f90442844434cc391 (diff)
downloadrust-431b254ffbcadaf08ec01d2041db0681ba0e0bb1.tar.gz
rust-431b254ffbcadaf08ec01d2041db0681ba0e0bb1.zip
Operands no longer appear in places
-rw-r--r--src/librustc/mir/mod.rs5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/librustc/mir/mod.rs b/src/librustc/mir/mod.rs
index 62b5327ae46..66adfee6129 100644
--- a/src/librustc/mir/mod.rs
+++ b/src/librustc/mir/mod.rs
@@ -2065,9 +2065,8 @@ pub struct SourceScopeLocalData {
 ///////////////////////////////////////////////////////////////////////////
 // Operands
 
-/// These are values that can appear inside an rvalue (or an index
-/// place). They are intentionally limited to prevent rvalues from
-/// being nested in one another.
+/// These are values that can appear inside an rvalue. They are intentionally
+/// limited to prevent rvalues from being nested in one another.
 #[derive(Clone, PartialEq, RustcEncodable, RustcDecodable)]
 pub enum Operand<'tcx> {
     /// Copy: The value must be available for use afterwards.