aboutsummaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorBrian Anderson <[email protected]>2011-02-22 18:58:07 -0500
committerBrian Anderson <[email protected]>2011-02-22 21:52:23 -0500
commitc4df39609c9c09c450dd8fe5905a8e6fbeb5f181 (patch)
tree1dc8fb985c2b6e406df0c2a1f9ff15963b8c87fc /src/lib
parentrustc: Perform explicit type substitution as requested by the programmer (diff)
downloadrust-c4df39609c9c09c450dd8fe5905a8e6fbeb5f181.tar.xz
rust-c4df39609c9c09c450dd8fe5905a8e6fbeb5f181.zip
Rename std._io to std.io since 'io' is no longer a keyword
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/io.rs (renamed from src/lib/_io.rs)0
-rw-r--r--src/lib/std.rc4
2 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/_io.rs b/src/lib/io.rs
index f285f6c8..f285f6c8 100644
--- a/src/lib/_io.rs
+++ b/src/lib/io.rs
diff --git a/src/lib/std.rc b/src/lib/std.rc
index 3500c4b3..4ad422a3 100644
--- a/src/lib/std.rc
+++ b/src/lib/std.rc
@@ -14,7 +14,7 @@ mod _str;
// General IO and system-services modules.
-mod _io;
+mod io;
mod sys;
mod _task;
@@ -25,7 +25,7 @@ mod util;
// Authorize various rule-bendings.
-auth _io = unsafe;
+auth io = unsafe;
auth _str = unsafe;
auth _vec = unsafe;
auth _task = unsafe;