about summary refs log tree commit diff
path: root/src/rustdoc/prune_unexported_pass.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/rustdoc/prune_unexported_pass.rs')
-rw-r--r--src/rustdoc/prune_unexported_pass.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rustdoc/prune_unexported_pass.rs b/src/rustdoc/prune_unexported_pass.rs
index 31fc986d240..e766ab12671 100644
--- a/src/rustdoc/prune_unexported_pass.rs
+++ b/src/rustdoc/prune_unexported_pass.rs
@@ -155,7 +155,7 @@ fn is_exported_from_mod(
     item_name: str
 ) -> bool {
     astsrv::exec(srv) {|ctxt|
-        alt ctxt.map.get(mod_id) {
+        alt ctxt.ast_map.get(mod_id) {
           ast_map::node_item(item) {
             alt item.node {
               ast::item_mod(m) {