diff options
| author | Brian Anderson <andersrb@gmail.com> | 2011-02-22 18:58:07 -0500 |
|---|---|---|
| committer | Brian Anderson <andersrb@gmail.com> | 2011-02-22 21:52:23 -0500 |
| commit | c4df39609c9c09c450dd8fe5905a8e6fbeb5f181 (patch) | |
| tree | 1dc8fb985c2b6e406df0c2a1f9ff15963b8c87fc /src/lib | |
| parent | b6f1c832e3c883a2ef2f5b47a68db79f33f5fb25 (diff) | |
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.rc | 4 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/_io.rs b/src/lib/io.rs index f285f6c85d7..f285f6c85d7 100644 --- a/src/lib/_io.rs +++ b/src/lib/io.rs diff --git a/src/lib/std.rc b/src/lib/std.rc index 3500c4b3d52..4ad422a3363 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; |
