Skip to content

Commit 04cee3e

Browse files
committed
fix some broken links
1 parent 0cedd25 commit 04cee3e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/macro-expansion.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,4 +158,4 @@ TODO
158158
[code_mp]: https://github.com/rust-lang/rust/tree/master/src/libsyntax/ext/tt/macro_parser.rs
159159
[code_mp]: https://github.com/rust-lang/rust/tree/master/src/libsyntax/ext/tt/macro_rules.rs
160160
[code_parse_int]: https://github.com/rust-lang/rust/blob/a97cd17f5d71fb4ec362f4fbd79373a6e7ed7b82/src/libsyntax/ext/tt/macro_parser.rs#L421
161-
[parsing]: ./the-parser.md
161+
[parsing]: ./the-parser.html

src/type-inference.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ fresh types and things that it will create, as described in
3232
[the README in the ty module][ty-readme]. This arena is created by the `enter`
3333
function and disposed after it returns.
3434

35-
[ty-readme]: src/librustc/ty/README.md
35+
[ty-readme]: ty.html
3636

3737
Within the closure, the infcx will have the type `InferCtxt<'cx, 'gcx,
3838
'tcx>` for some fresh `'cx` and `'tcx` -- the latter corresponds to
@@ -107,7 +107,7 @@ actual return type is not `()`, but rather `InferOk<()>`. The
107107
to ensure that these are fulfilled (typically by enrolling them in a
108108
fulfillment context). See the [trait README] for more background here.
109109

110-
[trait README]: ../traits/README.md
110+
[trait README]: trait-resolution.html
111111

112112
You can also enforce subtyping through `infcx.at(..).sub(..)`. The same
113113
basic concepts apply as above.

0 commit comments

Comments
 (0)