about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorNiko Matsakis <niko@alum.mit.edu>2018-01-31 14:13:49 -0500
committerNiko Matsakis <niko@alum.mit.edu>2018-01-31 14:13:49 -0500
commit986380820154c63cdff0da94c2926d4da54c9882 (patch)
treeff6c1f8daee36593b55ec29b2604481650614596 /src/doc/rustc-dev-guide
parentf0ab2ecf95c9e8289718dd6a03d0601e2a9d5690 (diff)
downloadrust-986380820154c63cdff0da94c2926d4da54c9882.tar.gz
rust-986380820154c63cdff0da94c2926d4da54c9882.zip
fix some broken links
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/macro-expansion.md2
-rw-r--r--src/doc/rustc-dev-guide/src/type-inference.md4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/doc/rustc-dev-guide/src/macro-expansion.md b/src/doc/rustc-dev-guide/src/macro-expansion.md
index a7777e80c3e..ee4bd322cb2 100644
--- a/src/doc/rustc-dev-guide/src/macro-expansion.md
+++ b/src/doc/rustc-dev-guide/src/macro-expansion.md
@@ -158,4 +158,4 @@ TODO
 [code_mp]: https://github.com/rust-lang/rust/tree/master/src/libsyntax/ext/tt/macro_parser.rs
 [code_mp]: https://github.com/rust-lang/rust/tree/master/src/libsyntax/ext/tt/macro_rules.rs
 [code_parse_int]: https://github.com/rust-lang/rust/blob/a97cd17f5d71fb4ec362f4fbd79373a6e7ed7b82/src/libsyntax/ext/tt/macro_parser.rs#L421
-[parsing]: ./the-parser.md
+[parsing]: ./the-parser.html
diff --git a/src/doc/rustc-dev-guide/src/type-inference.md b/src/doc/rustc-dev-guide/src/type-inference.md
index 6e2032feeab..feb694196bf 100644
--- a/src/doc/rustc-dev-guide/src/type-inference.md
+++ b/src/doc/rustc-dev-guide/src/type-inference.md
@@ -32,7 +32,7 @@ fresh types and things that it will create, as described in
 [the README in the ty module][ty-readme]. This arena is created by the `enter`
 function and disposed after it returns.
 
-[ty-readme]: src/librustc/ty/README.md
+[ty-readme]: ty.html
 
 Within the closure, the infcx will have the type `InferCtxt<'cx, 'gcx,
 'tcx>` for some fresh `'cx` and `'tcx` -- the latter corresponds to
@@ -107,7 +107,7 @@ actual return type is not `()`, but rather `InferOk<()>`. The
 to ensure that these are fulfilled (typically by enrolling them in a
 fulfillment context). See the [trait README] for more background here.
 
-[trait README]: ../traits/README.md
+[trait README]: trait-resolution.html
 
 You can also enforce subtyping through `infcx.at(..).sub(..)`. The same
 basic concepts apply as above.