about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorOliver Scherer <github35764891676564198441@oli-obk.de>2018-11-05 12:59:19 +0100
committerWho? Me?! <mark-i-m@users.noreply.github.com>2018-11-09 19:17:49 -0600
commit6b4d15869a9b386b703b2f836439b651afafa4e2 (patch)
tree4856f0f13c1c8bbbe24efef73e2e6e24a32d1756 /src/doc/rustc-dev-guide
parent4bc2711dd267251c752119f278eb71ab2f06f137 (diff)
downloadrust-6b4d15869a9b386b703b2f836439b651afafa4e2.tar.gz
rust-6b4d15869a9b386b703b2f836439b651afafa4e2.zip
Fix tidy
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/mir/construction.md5
1 files changed, 4 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 b7bd6bec6a0..fec1df677ac 100644
--- a/src/doc/rustc-dev-guide/src/mir/construction.md
+++ b/src/doc/rustc-dev-guide/src/mir/construction.md
@@ -64,7 +64,10 @@ fn generate_more_mir(&mut self, block: BasicBlock) -> BlockAnd<ResultType> {
 }
 ```
 
-When you invoke these functions, it is common to have a local variable `block` that is effectively a "cursor". It represents the point at which we are adding new MIR. When you invoke `generate_more_mir`, you want to update this cursor. You can do this manually, but it's tedious:
+When you invoke these functions, it is common to have a local variable `block`
+that is effectively a "cursor". It represents the point at which we are adding new MIR.
+When you invoke `generate_more_mir`, you want to update this cursor.
+You can do this manually, but it's tedious:
 
 ```rust
 let mut block;