about summary refs log tree commit diff
path: root/src/rustdoc/prune_unexported_pass.rs
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2012-01-25 21:21:21 -0800
committerBrian Anderson <banderson@mozilla.com>2012-01-26 11:05:21 -0800
commit38908581f7d34066ece145bcedcbe8bbddee9bcc (patch)
tree5b567c3e06e01051d4db901cd36a9b538e1793f8 /src/rustdoc/prune_unexported_pass.rs
parentc590bdeea41f5476f42c6a7cb067e162328bdbc2 (diff)
downloadrust-38908581f7d34066ece145bcedcbe8bbddee9bcc.tar.gz
rust-38908581f7d34066ece145bcedcbe8bbddee9bcc.zip
rustdoc: Rename astsrv::ctxt.map to ast_map
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) {