about summary refs log tree commit diff
path: root/src/doc
diff options
context:
space:
mode:
authorNoah Lev <camelidcamel@gmail.com>2021-12-04 17:59:42 -0800
committerJoshua Nelson <github@jyn.dev>2021-12-09 09:11:48 -0600
commit01fbac497842d7b8aa814e33ce64a11a67c9cf2a (patch)
tree36517d2c294da245efc7ada1555d49bbd0ce6602 /src/doc
parent72b6973b3eb97ab56c8ad056c9fbe60d0ffafb1a (diff)
downloadrust-01fbac497842d7b8aa814e33ce64a11a67c9cf2a.tar.gz
rust-01fbac497842d7b8aa814e33ce64a11a67c9cf2a.zip
Fix some broken links
Diffstat (limited to 'src/doc')
-rw-r--r--src/doc/rustc-dev-guide/src/mir/optimizations.md4
-rw-r--r--src/doc/rustc-dev-guide/src/profiling.md2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/doc/rustc-dev-guide/src/mir/optimizations.md b/src/doc/rustc-dev-guide/src/mir/optimizations.md
index 9ecf4e0d304..add22c6fcf5 100644
--- a/src/doc/rustc-dev-guide/src/mir/optimizations.md
+++ b/src/doc/rustc-dev-guide/src/mir/optimizations.md
@@ -85,7 +85,7 @@ The array is an array of `&dyn MirPass` trait objects. Typically, a pass is
 implemented in its own module of the [`rustc_mir_transform`][trans] crate.
 
 [rop]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_mir_transform/fn.run_optimization_passes.html
-[`MirPass`]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_mir_transform/trait.MirPass.html
+[`MirPass`]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_middle/mir/trait.MirPass.html
 [trans]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_mir_transform/index.html
 
 Some examples of passes are:
@@ -95,7 +95,7 @@ Some examples of passes are:
 
 You can see the ["Implementors" section of the `MirPass` rustdocs][impl] for more examples.
 
-[impl]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_mir_transform/trait.MirPass.html#implementors
+[impl]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_middle/mir/trait.MirPass.html#implementors
 [constprop]: https://en.wikipedia.org/wiki/Constant_folding#Constant_propagation
 
 ## MIR optimization levels
diff --git a/src/doc/rustc-dev-guide/src/profiling.md b/src/doc/rustc-dev-guide/src/profiling.md
index fd7014224d0..8db30b25376 100644
--- a/src/doc/rustc-dev-guide/src/profiling.md
+++ b/src/doc/rustc-dev-guide/src/profiling.md
@@ -12,7 +12,7 @@ Depending on what you're trying to measure, there are several different approach
 
 - If you want a medium-to-high level overview of where `rustc` is spending its time:
   - The `-Z self-profile` flag and [measureme](https://github.com/rust-lang/measureme) tools offer a query-based approach to profiling.
-    See [their docs](https://github.com/rust-lang/measureme/blob/master/summarize/Readme.md) for more information.
+    See [their docs](https://github.com/rust-lang/measureme/blob/master/summarize/README.md) for more information.
 
 - If you want function level performance data or even just more details than the above approaches:
   - Consider using a native code profiler such as [perf](profiling/with_perf.html)