File tree 1 file changed +2
-3
lines changed
1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -65,8 +65,7 @@ See the [HIR chapter][hir-map] for more detailed information.
65
65
66
66
- [ ` BasicBlock ` ] identifies a * basic block* . It points to an instance of
67
67
[ ` BasicBlockData ` ] , which can be retrieved by indexing into
68
- [ ` Body::basic_blocks() ` ] (note that you must call a function; the field is
69
- private).
68
+ [ ` Body.basic_blocks ` ] .
70
69
71
70
- [ ` Local ` ] identifies a local variable in a function. Its associated data is in
72
71
[ ` LocalDecl ` ] , which can be retrieved by indexing into [ ` Body.local_decls ` ] .
@@ -93,7 +92,7 @@ See the [HIR chapter][hir-map] for more detailed information.
93
92
94
93
[ `BasicBlock` ] : https://doc.rust-lang.org/nightly/nightly-rustc/rustc_middle/mir/struct.BasicBlock.html
95
94
[ `BasicBlockData` ] : https://doc.rust-lang.org/nightly/nightly-rustc/rustc_middle/mir/struct.BasicBlockData.html
96
- [ `Body:: basic_blocks() ` ] : https://doc.rust-lang.org/nightly/nightly-rustc/rustc_middle/mir/struct.Body.html#method .basic_blocks
95
+ [ `Body. basic_blocks` ] : https://doc.rust-lang.org/nightly/nightly-rustc/rustc_middle/mir/struct.Body.html#structfield .basic_blocks
97
96
[ `Local` ] : https://doc.rust-lang.org/nightly/nightly-rustc/rustc_middle/mir/struct.Local.html
98
97
[ `LocalDecl` ] : https://doc.rust-lang.org/nightly/nightly-rustc/rustc_middle/mir/struct.LocalDecl.html
99
98
[ `Body.local_decls` ] : https://doc.rust-lang.org/nightly/nightly-rustc/rustc_middle/mir/struct.Body.html#structfield.local_decls
You can’t perform that action at this time.
0 commit comments