about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorMax Heller <max.a.heller@gmail.com>2024-09-23 04:47:44 -0400
committerGitHub <noreply@github.com>2024-09-23 16:47:44 +0800
commit5779d91dec200d9c055bf85c46155563bde44bc5 (patch)
tree3276488551fe11f6d1e37104ed26aa7cfeffade0 /src/doc/rustc-dev-guide
parent06343bb54f77e3fe4cde094e4468cd58023b3c04 (diff)
downloadrust-5779d91dec200d9c055bf85c46155563bde44bc5.tar.gz
rust-5779d91dec200d9c055bf85c46155563bde44bc5.zip
fix broken links (#2063)
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/coherence.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doc/rustc-dev-guide/src/coherence.md b/src/doc/rustc-dev-guide/src/coherence.md
index fc20ca158c2..2d2fb7cf177 100644
--- a/src/doc/rustc-dev-guide/src/coherence.md
+++ b/src/doc/rustc-dev-guide/src/coherence.md
@@ -28,7 +28,7 @@ Overlap checking for inherent impl blocks is done through `fn check_item` in coh
 where you can very clearly see that (at least for small `n`), the check really performs `n^2`
 comparisons between impls. 
 
-In the case of traits, this check is currently done as part of building the [specialization graph](./specialization.md),
+In the case of traits, this check is currently done as part of building the [specialization graph](traits/specialization.md),
 to handle specializing impls overlapping with their parent, but this may change in the future.
 
 In both cases, all pairs of impls are checked for overlap.
@@ -36,7 +36,7 @@ In both cases, all pairs of impls are checked for overlap.
 Overlapping is sometimes partially allowed:
 
 1. for marker traits
-2. under [specialization](./specialization.md)
+2. under [specialization](traits/specialization.md)
 
 but normally isn't.