Skip to content

Commit 8e70892

Browse files
oli-obkmark-i-m
authored andcommitted
Fix tidy
1 parent 1dd3236 commit 8e70892

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/mir/construction.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,10 @@ fn generate_more_mir(&mut self, block: BasicBlock) -> BlockAnd<ResultType> {
6464
}
6565
```
6666

67-
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:
67+
When you invoke these functions, it is common to have a local variable `block`
68+
that is effectively a "cursor". It represents the point at which we are adding new MIR.
69+
When you invoke `generate_more_mir`, you want to update this cursor.
70+
You can do this manually, but it's tedious:
6871

6972
```rust
7073
let mut block;

0 commit comments

Comments
 (0)