about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorNiko Matsakis <niko@alum.mit.edu>2018-01-31 11:31:43 -0500
committerNiko Matsakis <niko@alum.mit.edu>2018-01-31 14:13:10 -0500
commitf0ab2ecf95c9e8289718dd6a03d0601e2a9d5690 (patch)
tree447b73daa3cbe5195b424d507954817b603fb428 /src/doc/rustc-dev-guide
parent51fc35b7cf49aba08c0e63bf4efeeb3197a98541 (diff)
downloadrust-f0ab2ecf95c9e8289718dd6a03d0601e2a9d5690.tar.gz
rust-f0ab2ecf95c9e8289718dd6a03d0601e2a9d5690.zip
Update link to hir
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/ty.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/rustc-dev-guide/src/ty.md b/src/doc/rustc-dev-guide/src/ty.md
index 906e99e7135..e29ecb5e3dd 100644
--- a/src/doc/rustc-dev-guide/src/ty.md
+++ b/src/doc/rustc-dev-guide/src/ty.md
@@ -78,7 +78,7 @@ is in fact a simple type alias for a reference with `'tcx` lifetime:
 pub type Ty<'tcx> = &'tcx TyS<'tcx>;
 ```
 
-[the HIR]: https://github.com/rust-lang/rust/blob/master/src/librustc/hir/README.md
+[the HIR]: ./hir.html
 
 You can basically ignore the `TyS` struct -- you will basically never
 access it explicitly. We always pass it by reference using the