about summary refs log tree commit diff
path: root/src/librustpkg/messages.rs
diff options
context:
space:
mode:
authorCorey Richardson <corey@octayn.net>2013-06-28 18:32:26 -0400
committerCorey Richardson <corey@octayn.net>2013-06-29 11:20:02 -0400
commit1662bd371c22ba5d476c0c9024fdd99534fc7867 (patch)
tree93a3f2c9a7df7a03bb153518ac420c9bfd11f0df /src/librustpkg/messages.rs
parent0326b0abed3fe9045bfc8e84d060115aecdcee37 (diff)
downloadrust-1662bd371c22ba5d476c0c9024fdd99534fc7867.tar.gz
rust-1662bd371c22ba5d476c0c9024fdd99534fc7867.zip
Great renaming: propagate throughout the rest of the codebase
Diffstat (limited to 'src/librustpkg/messages.rs')
-rw-r--r--src/librustpkg/messages.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/librustpkg/messages.rs b/src/librustpkg/messages.rs
index bde7aaeab8e..43d727c2989 100644
--- a/src/librustpkg/messages.rs
+++ b/src/librustpkg/messages.rs
@@ -9,8 +9,8 @@
 // except according to those terms.
 
 use extra::term;
-use core::io;
-use core::result::*;
+use std::io;
+use std::result::*;
 
 pub fn note(msg: &str) {
     pretty_message(msg, "note: ", term::color::green, io::stdout())