Skip to content

Commit e84a7d9

Browse files
committed
Remove unneeded pub(crate)
1 parent 9169622 commit e84a7d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/std/src/sys/anonymous_pipe/unsupported.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use crate::io;
22
use crate::pipe::{PipeReader, PipeWriter};
33
use crate::process::Stdio;
4-
pub(crate) use crate::sys::pipe::AnonPipe;
4+
pub use crate::sys::pipe::AnonPipe;
55

66
#[inline]
77
pub fn pipe() -> io::Result<(AnonPipe, AnonPipe)> {

0 commit comments

Comments
 (0)