diff options
| author | Richo Healey <richo@psych0tik.net> | 2015-03-27 10:58:12 -0700 | 
|---|---|---|
| committer | Richo Healey <richo@psych0tik.net> | 2015-03-27 10:58:12 -0700 | 
| commit | 13e4270bf9468e9213b6cc16ca217062791599a0 (patch) | |
| tree | 89a410dd287837578bbb110aa29f9e941bc9fae6 /src/librustdoc/lib.rs | |
| parent | 199bdcfeff5cfafd1f8e8ff583d7209272469879 (diff) | |
| download | rust-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.rs | 4 | 
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;  | 
