fix some broken links

This commit is contained in:
Niko Matsakis 2018-01-31 14:13:49 -05:00
parent 04d35ee547
commit e4f4581cc6
2 changed files with 3 additions and 3 deletions

View File

@ -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_parser.rs
[code_mp]: https://github.com/rust-lang/rust/tree/master/src/libsyntax/ext/tt/macro_rules.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 [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

View File

@ -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` [the README in the ty module][ty-readme]. This arena is created by the `enter`
function and disposed after it returns. 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, Within the closure, the infcx will have the type `InferCtxt<'cx, 'gcx,
'tcx>` for some fresh `'cx` and `'tcx` -- the latter corresponds to '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 to ensure that these are fulfilled (typically by enrolling them in a
fulfillment context). See the [trait README] for more background here. 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 You can also enforce subtyping through `infcx.at(..).sub(..)`. The same
basic concepts apply as above. basic concepts apply as above.