about summary refs log tree commit diff
path: root/src/librustdoc
diff options
context:
space:
mode:
authorKeegan McAllister <kmcallister@mozilla.com>2014-06-01 15:58:06 -0700
committerKeegan McAllister <kmcallister@mozilla.com>2014-06-24 10:22:49 -0700
commit75bfedaef5c7b7bbfd91a78188f8b8e6a97510c3 (patch)
tree1aa2d0612ba71bcb5db24f4b3fc1db37a8cf3a6a /src/librustdoc
parentc38125987f14017dd7a6f7977a84c7896d897eff (diff)
downloadrust-75bfedaef5c7b7bbfd91a78188f8b8e6a97510c3.tar.gz
rust-75bfedaef5c7b7bbfd91a78188f8b8e6a97510c3.zip
Move lint.rs out of middle
We're going to have more modules under lint, and the paths get unwieldy. We
also plan to have lints run at multiple points in the compilation pipeline.
Diffstat (limited to 'src/librustdoc')
-rw-r--r--src/librustdoc/core.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustdoc/core.rs b/src/librustdoc/core.rs
index 061798cb23e..3a481abc775 100644
--- a/src/librustdoc/core.rs
+++ b/src/librustdoc/core.rs
@@ -11,7 +11,7 @@
 use rustc;
 use rustc::{driver, middle};
 use rustc::middle::privacy;
-use rustc::middle::lint;
+use rustc::lint;
 
 use syntax::ast;
 use syntax::parse::token;