diff options
| author | Oliver Scherer <github35764891676564198441@oli-obk.de> | 2018-11-05 12:59:19 +0100 |
|---|---|---|
| committer | Who? Me?! <mark-i-m@users.noreply.github.com> | 2018-11-09 19:17:49 -0600 |
| commit | 6b4d15869a9b386b703b2f836439b651afafa4e2 (patch) | |
| tree | 4856f0f13c1c8bbbe24efef73e2e6e24a32d1756 /src/doc/rustc-dev-guide | |
| parent | 4bc2711dd267251c752119f278eb71ab2f06f137 (diff) | |
| download | rust-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.md | 5 |
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; |
