about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorWho? Me?! <mark-i-m@users.noreply.github.com>2018-11-08 19:02:49 +0100
committerWho? Me?! <mark-i-m@users.noreply.github.com>2018-11-09 19:17:49 -0600
commit959dd387bf8bab261ade10ebadb248e37765501a (patch)
tree9d6c5699a2abf2d8caf672a667042ca5e0b12bdc /src
parent23b2ac55b8f42c4752f92f8c7efb8a70ba52edfb (diff)
downloadrust-959dd387bf8bab261ade10ebadb248e37765501a.tar.gz
rust-959dd387bf8bab261ade10ebadb248e37765501a.zip
Missing connection between two consecutive sentences
Co-Authored-By: oli-obk <github35764891676564198441@oli-obk.de>
Diffstat (limited to 'src')
-rw-r--r--src/doc/rustc-dev-guide/src/mir/construction.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/doc/rustc-dev-guide/src/mir/construction.md b/src/doc/rustc-dev-guide/src/mir/construction.md
index 4217a58a2e6..5f54e21803d 100644
--- a/src/doc/rustc-dev-guide/src/mir/construction.md
+++ b/src/doc/rustc-dev-guide/src/mir/construction.md
@@ -128,7 +128,8 @@ In [MIR] there is no difference between method calls and function calls anymore.
 `if` conditions and `match` statements for `enum`s without variants with fields are
 lowered to `TerminatorKind::SwitchInt`. Each possible value (so `0` and `1` for `if`
 conditions) has a corresponding `BasicBlock` to which the code continues.
-The argument being branched on is again an `Operand`.
+The argument being branched on is (again) an `Operand` representing the value of 
+the if condition.
 
 ### Pattern matching