Remove unneeded `pub(crate)` · model-checking/verify-rust-std@0c56873

Skip to content

Navigation Menu

Sign in

Appearance settings

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

Appearance settings

Commit 0c56873

committed

Remove unneeded pub(crate)

1 parent ba65c6c commit 0c56873

File tree

1 file changed

+

1

-

1

lines changed

1 file changed

+

1

-

1

lines changed

Lines changed: 1 addition & 1 deletion

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)