diff options
| author | Steven Fackler <sfackler@gmail.com> | 2013-10-08 23:36:26 -0700 |
|---|---|---|
| committer | Steven Fackler <sfackler@gmail.com> | 2013-10-08 23:36:26 -0700 |
| commit | 3c62ed657831aaed21033b6d24bd136786cf1f19 (patch) | |
| tree | ae00e5062e5f7ea0b0afa4636e4235d22bab795c /src/libstd/rt | |
| parent | 3a70df1d3cf12eae47536a96e26c1e7e0030b75a (diff) | |
| download | rust-3c62ed657831aaed21033b6d24bd136786cf1f19.tar.gz rust-3c62ed657831aaed21033b6d24bd136786cf1f19.zip | |
Make std::rt::io::extensions public
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/rt')
| -rw-r--r-- | src/libstd/rt/io/mod.rs | 2 |
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? |
