We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39eb2de commit d97216eCopy full SHA for d97216e
src/mir/passes.md
@@ -27,7 +27,7 @@ where we want to access the MIR for type checking or other purposes:
27
A `MirPass` is some bit of code that processes the MIR, typically –
28
but not always – transforming it along the way somehow. For example,
29
it might perform an optimization. The `MirPass` trait itself is found
30
-in [the `rustc_mir_transform` module][mirtransform], and it
+in [the `rustc_mir_transform` crate][mirtransform], and it
31
basically consists of one method, `run_pass`, that simply gets an
32
`&mut Mir` (along with the tcx and some information about where it
33
came from). The MIR is therefore modified in place (which helps to
0 commit comments