Skip to content

Commit d579acb

Browse files
JohnTitortshepang
authored andcommitted
Fix broken relative links
Signed-off-by: Yuki Okushi <[email protected]>
1 parent bf4cdde commit d579acb

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/implementing_new_features.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ like this; for example, the compiler team recommends
3333
filing a Major Change Proposal ([MCP][mcp]) as a lightweight way to
3434
garner support and feedback without requiring full consensus.
3535

36-
[mcp]: compiler/mcp.md#public-facing-changes-require-rfcbot-fcp
36+
[mcp]: https://forge.rust-lang.org/compiler/mcp.html#public-facing-changes-require-rfcbot-fcp
3737

3838
You don't need to have the implementation fully ready for r+ to propose an FCP,
3939
but it is generally a good idea to have at least a proof

src/solve/the-solver.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ While the actual solver is not fully pure to deal with overflow and cycles, we a
1212
going to defer that for now.
1313

1414
To deal with inference variables and to improve caching, we use
15-
[canonicalization](/canonicalization.html).
15+
[canonicalization](./canonicalization.md).
1616

17-
TODO: write the remaining code for this as well.
17+
TODO: write the remaining code for this as well.

src/solve/trait-solving.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
This chapter describes how trait solving works with the new WIP solver located in
44
[`rustc_trait_selection/solve`][solve]. Feel free to also look at the docs for
5-
[the current solver](../traits/resolution.hmtl) and [the chalk solver](./chalk.html)
5+
[the current solver](../traits/resolution.md) and [the chalk solver](../traits/chalk.md)
66
can be found separately.
77

88
## Core concepts

0 commit comments

Comments
 (0)