about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2013-10-09 20:46:21 -0700
committerbors <bors@rust-lang.org>2013-10-09 20:46:21 -0700
commit2b978af227492b878a02b69300b3e7e3ce9ca7c5 (patch)
treea2d848e1ed15779d47ec3e3173a82b74720dfd58 /src/libstd
parent8f4b87290bfdaf9f13663539f2969a0567e5b154 (diff)
parent3c62ed657831aaed21033b6d24bd136786cf1f19 (diff)
downloadrust-2b978af227492b878a02b69300b3e7e3ce9ca7c5.tar.gz
rust-2b978af227492b878a02b69300b3e7e3ce9ca7c5.zip
auto merge of #9780 : sfackler/rust/extensions2, r=alexcrichton
This works around #9779, but is probably the right thing to do anyways
since that's the module where all of the documentation for those traits
lives.
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/rt/io/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/rt/io/mod.rs b/src/libstd/rt/io/mod.rs
index a18f97930fa..f14f8f28d12 100644
--- a/src/libstd/rt/io/mod.rs
+++ b/src/libstd/rt/io/mod.rs
@@ -297,7 +297,7 @@ pub mod flate;
 pub mod comm_adapters;
 
 /// Extension traits
-mod extensions;
+pub mod extensions;
 
 /// Non-I/O things needed by the I/O module
 // XXX: shouldn this really be pub?