about summary refs log tree commit diff
path: root/src/libstd/rt/io/mod.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2013-09-03 19:46:42 -0700
committerbors <bors@rust-lang.org>2013-09-03 19:46:42 -0700
commit383073883f1f07af0088b58d20e55e28c4942a64 (patch)
tree59715080c5adfc3f390721ec824554367251afc4 /src/libstd/rt/io/mod.rs
parent3c4e943881fc93136c4b6ad80f23aead9fee9d1b (diff)
parent4a18d46130e13aad28fc072dafdd7e7b4baa8736 (diff)
downloadrust-383073883f1f07af0088b58d20e55e28c4942a64.tar.gz
rust-383073883f1f07af0088b58d20e55e28c4942a64.zip
auto merge of #8963 : jmgrosen/rust/issue-8881, r=alexcrichton
Diffstat (limited to 'src/libstd/rt/io/mod.rs')
-rw-r--r--src/libstd/rt/io/mod.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/libstd/rt/io/mod.rs b/src/libstd/rt/io/mod.rs
index c56b20453e5..75af7ff8444 100644
--- a/src/libstd/rt/io/mod.rs
+++ b/src/libstd/rt/io/mod.rs
@@ -385,6 +385,8 @@ impl ToStr for IoErrorKind {
 // Raised by `I/O` operations on error.
 condition! {
     // FIXME (#6009): uncomment `pub` after expansion support lands.
+    // NOTE: this super::IoError should be IoError
+    // Change this next time the snapshot it updated.
     /*pub*/ io_error: super::IoError -> ();
 }
 
@@ -392,6 +394,8 @@ condition! {
 // Raised by `read` on error
 condition! {
     // FIXME (#6009): uncomment `pub` after expansion support lands.
+    // NOTE: this super::IoError should be IoError
+    // Change this next time the snapshot it updated.
     /*pub*/ read_error: super::IoError -> ();
 }