diff options
| author | Nathan West <Lucretiel@gmail.com> | 2020-09-10 23:48:22 -0400 |
|---|---|---|
| committer | Nathan West <Lucretiel@gmail.com> | 2020-09-10 23:48:22 -0400 |
| commit | 96229f02402e82914ec6100b28ad2cbdd273a0d4 (patch) | |
| tree | 4a61bd3ac711bf5a0049df708c2ccd095899987a /library/std | |
| parent | a02014280586b53997622c501db00398376967a8 (diff) | |
| download | rust-96229f02402e82914ec6100b28ad2cbdd273a0d4.tar.gz rust-96229f02402e82914ec6100b28ad2cbdd273a0d4.zip | |
move buffered.rs to mod.rs
Diffstat (limited to 'library/std')
| -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 |
