about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorTshepang Lekhonkhobe <tshepang@gmail.com>2020-04-01 11:04:45 +0200
committerGitHub <noreply@github.com>2020-04-01 11:04:45 +0200
commit3521fb90b72ab90a25369eae636e97dd6dd67e28 (patch)
tree5f179d3cd62d74f93a0616bf3d146e94ffcd4b88 /src/doc/rustc-dev-guide
parentf1fa8cbde0835612997d4f3640ba7a94035e91ec (diff)
downloadrust-3521fb90b72ab90a25369eae636e97dd6dd67e28.tar.gz
rust-3521fb90b72ab90a25369eae636e97dd6dd67e28.zip
Resolver trait moved (#652)
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/name-resolution.md5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/doc/rustc-dev-guide/src/name-resolution.md b/src/doc/rustc-dev-guide/src/name-resolution.md
index 431a8f1d3fd..f3aacba0017 100644
--- a/src/doc/rustc-dev-guide/src/name-resolution.md
+++ b/src/doc/rustc-dev-guide/src/name-resolution.md
@@ -19,8 +19,8 @@ namespaces and therefore can co-exist.
 
 The name resolution in Rust is a two-phase process. In the first phase, which runs
 during macro expansion, we build a tree of modules and resolve imports. Macro
-expansion and name resolution communicate with each other via the `Resolver`
-trait, defined in `librustc_ast`.
+expansion and name resolution communicate with each other via the
+[`Resolver`] trait.
 
 The input to the second phase is the syntax tree, produced by parsing input
 files and expanding macros. This phase produces links from all the names in the
@@ -36,6 +36,7 @@ The name resolution lives in the `librustc_resolve` crate, with the meat in
 `lib.rs` and some helpers or symbol-type specific logic in the other modules.
 
 [`Resolver::resolve_crate`]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_resolve/struct.Resolver.html#method.resolve_crate
+[`Resolver`]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_ast_lowering/trait.Resolver.html
 
 ## Namespaces