about summary refs log tree commit diff
path: root/src/rustdoc/extract.rs
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2012-05-13 17:12:56 -0700
committerBrian Anderson <banderson@mozilla.com>2012-05-13 17:33:29 -0700
commit1f52652a06655fa1c9eb3ee278b62e488e1ccc28 (patch)
treef9ca093e9a55d12c3973ddc0fb2c94cbda30649f /src/rustdoc/extract.rs
parenta2572fe77efe58a7c202824deeb0b78fca89cf7e (diff)
downloadrust-1f52652a06655fa1c9eb3ee278b62e488e1ccc28.tar.gz
rust-1f52652a06655fa1c9eb3ee278b62e488e1ccc28.zip
rustc: Eliminate some indirection to the syntax crate
Diffstat (limited to 'src/rustdoc/extract.rs')
-rw-r--r--src/rustdoc/extract.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rustdoc/extract.rs b/src/rustdoc/extract.rs
index fc54a1ea9f6..25bf5d6c64f 100644
--- a/src/rustdoc/extract.rs
+++ b/src/rustdoc/extract.rs
@@ -1,6 +1,6 @@
 #[doc = "Converts the Rust AST to the rustdoc document model"];
 
-import rustc::syntax::ast;
+import syntax::ast;
 
 export from_srv, extract;