about summary refs log tree commit diff
path: root/src/librustdoc/parse.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/librustdoc/parse.rs')
-rw-r--r--src/librustdoc/parse.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/librustdoc/parse.rs b/src/librustdoc/parse.rs
index 7351f2f7b30..db97f34f201 100644
--- a/src/librustdoc/parse.rs
+++ b/src/librustdoc/parse.rs
@@ -10,12 +10,12 @@
 
 //! AST-parsing helpers
 
+use rustc::driver::driver::{file_input, str_input};
 use rustc::driver::driver;
-use driver::{file_input, str_input};
 use rustc::driver::session;
-use syntax::diagnostic;
 use syntax::ast;
 use syntax::codemap;
+use syntax::diagnostic;
 use syntax::parse;
 
 pub fn from_file(file: &Path) -> @ast::crate {