about summary refs log tree commit diff
path: root/src/librustdoc/lib.rs
diff options
context:
space:
mode:
authorRicho Healey <richo@psych0tik.net>2015-03-27 10:58:12 -0700
committerRicho Healey <richo@psych0tik.net>2015-03-27 10:58:12 -0700
commit13e4270bf9468e9213b6cc16ca217062791599a0 (patch)
tree89a410dd287837578bbb110aa29f9e941bc9fae6 /src/librustdoc/lib.rs
parent199bdcfeff5cfafd1f8e8ff583d7209272469879 (diff)
downloadrust-13e4270bf9468e9213b6cc16ca217062791599a0.tar.gz
rust-13e4270bf9468e9213b6cc16ca217062791599a0.zip
Unquote all crate names without underscores
Diffstat (limited to 'src/librustdoc/lib.rs')
-rw-r--r--src/librustdoc/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/librustdoc/lib.rs b/src/librustdoc/lib.rs
index 9f1d876432c..62c9199a0fa 100644
--- a/src/librustdoc/lib.rs
+++ b/src/librustdoc/lib.rs
@@ -51,11 +51,11 @@ extern crate rustc_lint;
 extern crate rustc_back;
 extern crate serialize;
 extern crate syntax;
-extern crate "test" as testing;
+extern crate test as testing;
 extern crate unicode;
 #[macro_use] extern crate log;
 
-extern crate "serialize" as rustc_serialize; // used by deriving
+extern crate serialize as rustc_serialize; // used by deriving
 
 use std::cell::RefCell;
 use std::collections::HashMap;