Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit 5779d91

Browse files
authored
fix broken links (rust-lang#2063)
1 parent 06343bb commit 5779d91

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/doc/rustc-dev-guide/src/coherence.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ Overlap checking for inherent impl blocks is done through `fn check_item` in coh
2828
where you can very clearly see that (at least for small `n`), the check really performs `n^2`
2929
comparisons between impls.
3030

31-
In the case of traits, this check is currently done as part of building the [specialization graph](./specialization.md),
31+
In the case of traits, this check is currently done as part of building the [specialization graph](traits/specialization.md),
3232
to handle specializing impls overlapping with their parent, but this may change in the future.
3333

3434
In both cases, all pairs of impls are checked for overlap.
3535

3636
Overlapping is sometimes partially allowed:
3737

3838
1. for marker traits
39-
2. under [specialization](./specialization.md)
39+
2. under [specialization](traits/specialization.md)
4040

4141
but normally isn't.
4242

0 commit comments

Comments
 (0)