diff options
| author | Corey Richardson <corey@octayn.net> | 2013-06-24 20:40:33 -0400 |
|---|---|---|
| committer | Corey Richardson <corey@octayn.net> | 2013-06-25 16:15:07 -0400 |
| commit | 0d471d310ded00283338ae28350b304e0f36e562 (patch) | |
| tree | 2a566bb65168c8a75875f61bcf03f402c215a2a8 /src/libsyntax/parse/comments.rs | |
| parent | 032dcc57e8876e960837c3a050be2c7570e7eafd (diff) | |
| download | rust-0d471d310ded00283338ae28350b304e0f36e562.tar.gz rust-0d471d310ded00283338ae28350b304e0f36e562.zip | |
great renaming propagation: syntax
Diffstat (limited to 'src/libsyntax/parse/comments.rs')
| -rw-r--r-- | src/libsyntax/parse/comments.rs | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/libsyntax/parse/comments.rs b/src/libsyntax/parse/comments.rs index 472f807cd8b..2baf08b68f1 100644 --- a/src/libsyntax/parse/comments.rs +++ b/src/libsyntax/parse/comments.rs @@ -8,8 +8,6 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. -use core::prelude::*; - use ast; use codemap::{BytePos, CharPos, CodeMap, Pos}; use diagnostic; @@ -20,9 +18,9 @@ use parse::lexer; use parse::token; use parse::token::{get_ident_interner}; -use core::io; -use core::str; -use core::uint; +use std::io; +use std::str; +use std::uint; #[deriving(Eq)] pub enum cmnt_style { |
