about summary refs log tree commit diff
path: root/library/std/src/io
diff options
context:
space:
mode:
authorNathan West <Lucretiel@gmail.com>2020-09-10 23:48:22 -0400
committerNathan West <Lucretiel@gmail.com>2020-09-10 23:48:22 -0400
commit96229f02402e82914ec6100b28ad2cbdd273a0d4 (patch)
tree4a61bd3ac711bf5a0049df708c2ccd095899987a /library/std/src/io
parenta02014280586b53997622c501db00398376967a8 (diff)
downloadrust-96229f02402e82914ec6100b28ad2cbdd273a0d4.tar.gz
rust-96229f02402e82914ec6100b28ad2cbdd273a0d4.zip
move buffered.rs to mod.rs
Diffstat (limited to 'library/std/src/io')
-rw-r--r--library/std/src/io/buffered/mod.rs (renamed from library/std/src/io/buffered.rs)2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/io/buffered.rs b/library/std/src/io/buffered/mod.rs
index 7329ea53736..f9caeaf98e2 100644
--- a/library/std/src/io/buffered.rs
+++ b/library/std/src/io/buffered/mod.rs
@@ -15,7 +15,7 @@ use crate::io::Error;
 pub use bufreader::BufReader;
 pub use bufwriter::BufWriter;
 pub use linewriter::LineWriter;
-pub(super) use linewritershim::LineWriterShim;
+use linewritershim::LineWriterShim;
 
 /// An error returned by [`BufWriter::into_inner`] which combines an error that
 /// happened while writing out the buffer, and the buffered writer object