about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorMark Mansi <markm@cs.wisc.edu>2019-11-05 11:11:45 -0600
committerWho? Me?! <mark-i-m@users.noreply.github.com>2019-11-05 21:45:49 -0600
commitcaa9caa01772ce50114aeeb6e9142fd7023346dc (patch)
treedc225035d6cfc17fbed4e1c0ae709cf689655842 /src/doc/rustc-dev-guide
parent196e0e9864ff3bf23f581c90f866c6578f6da3ac (diff)
downloadrust-caa9caa01772ce50114aeeb6e9142fd7023346dc.tar.gz
rust-caa9caa01772ce50114aeeb6e9142fd7023346dc.zip
fix links
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/building/how-to-build-and-run.md2
-rw-r--r--src/doc/rustc-dev-guide/src/building/suggested.md2
-rw-r--r--src/doc/rustc-dev-guide/src/profiling/with_perf.md2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/doc/rustc-dev-guide/src/building/how-to-build-and-run.md b/src/doc/rustc-dev-guide/src/building/how-to-build-and-run.md
index 51425076909..5e049e39e3e 100644
--- a/src/doc/rustc-dev-guide/src/building/how-to-build-and-run.md
+++ b/src/doc/rustc-dev-guide/src/building/how-to-build-and-run.md
@@ -256,7 +256,7 @@ in other sections:
   - `./x.py build --stage 1` – builds everything using the stage 1 compiler,
     not just up to libstd
   - `./x.py build` – builds the stage2 compiler
-- Running tests (see the [section on running tests](./tests/running.html) for
+- Running tests (see the [section on running tests](../tests/running.html) for
   more details):
   - `./x.py test --stage 1 src/libstd` – runs the `#[test]` tests from libstd
   - `./x.py test --stage 1 src/test/ui` – runs the `ui` test suite
diff --git a/src/doc/rustc-dev-guide/src/building/suggested.md b/src/doc/rustc-dev-guide/src/building/suggested.md
index 427a4485847..6b23f2a0d7e 100644
--- a/src/doc/rustc-dev-guide/src/building/suggested.md
+++ b/src/doc/rustc-dev-guide/src/building/suggested.md
@@ -53,7 +53,7 @@ the MIR).
 
 **The TL;DR is that you might get weird behavior from a compile when
 using `--keep-stage 1`** -- for example, strange
-[ICEs](appendix/glossary.html) or other panics. In that case, you
+[ICEs](../appendix/glossary.html) or other panics. In that case, you
 should simply remove the `--keep-stage 1` from the command and
 rebuild.  That ought to fix the problem.
 
diff --git a/src/doc/rustc-dev-guide/src/profiling/with_perf.md b/src/doc/rustc-dev-guide/src/profiling/with_perf.md
index 7582eece563..9615e9e2ab3 100644
--- a/src/doc/rustc-dev-guide/src/profiling/with_perf.md
+++ b/src/doc/rustc-dev-guide/src/profiling/with_perf.md
@@ -14,7 +14,7 @@ This is a guide for how to profile rustc with [perf](https://perf.wiki.kernel.or
 - Make a rustup toolchain pointing to that result
   - see [the "build and run" section for instructions][b-a-r]
 
-[b-a-r]: ../how-to-build-and-run.html#toolchain
+[b-a-r]: ../building/how-to-build-and-run.html#toolchain
 
 ## Gathering a perf profile