about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorMichael Bryan <michaelfbryan@gmail.com>2018-03-12 19:15:06 +0800
committerWho? Me?! <mark-i-m@users.noreply.github.com>2018-03-12 17:41:01 -0500
commit2498453fccfd0cafd59948ca7497094b280ef536 (patch)
tree1aeaa3b7d7ef2dc0235cf1ce4d4e5b5821b408e1 /src/doc/rustc-dev-guide
parent9ea5f85b13eaea75d218f21c29dd0c54c46a7b19 (diff)
downloadrust-2498453fccfd0cafd59948ca7497094b280ef536.tar.gz
rust-2498453fccfd0cafd59948ca7497094b280ef536.zip
Fixed a broken link
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/traits-canonicalization.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/rustc-dev-guide/src/traits-canonicalization.md b/src/doc/rustc-dev-guide/src/traits-canonicalization.md
index fc55fac0d4e..6ff61fdda9b 100644
--- a/src/doc/rustc-dev-guide/src/traits-canonicalization.md
+++ b/src/doc/rustc-dev-guide/src/traits-canonicalization.md
@@ -41,7 +41,7 @@ trait query: `?A: Foo<'static, ?B>`, where `?A` and `?B` are unbound.
 This query contains two unbound variables, but it also contains the
 lifetime `'static`. The trait system generally ignores all lifetimes
 and treats them equally, so when canonicalizing, we will *also*
-replace any [free lifetime](./background.html#free-vs-bound) with a
+replace any [free lifetime](./appendix-background.html#free-vs-bound) with a
 canonical variable. Therefore, we get the following result: 
 
     ?0: Foo<'?1, ?2>