File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -56,21 +56,21 @@ struct StderrRaw(stdio::Stderr);
56
56
/// The returned handle has no external synchronization or buffering.
57
57
fn stdin_raw ( ) -> io:: Result < StdinRaw > { stdio:: Stdin :: new ( ) . map ( StdinRaw ) }
58
58
59
- /// Constructs a new raw handle to the standard input stream of this process.
59
+ /// Constructs a new raw handle to the standard output stream of this process.
60
60
///
61
61
/// The returned handle does not interact with any other handles created nor
62
62
/// handles returned by `std::io::stdout`. Note that data is buffered by the
63
- /// `std::io::stdin ` handles so writes which happen via this raw handle may
63
+ /// `std::io::stdout ` handles so writes which happen via this raw handle may
64
64
/// appear before previous writes.
65
65
///
66
66
/// The returned handle has no external synchronization or buffering layered on
67
67
/// top.
68
68
fn stdout_raw ( ) -> io:: Result < StdoutRaw > { stdio:: Stdout :: new ( ) . map ( StdoutRaw ) }
69
69
70
- /// Constructs a new raw handle to the standard input stream of this process.
70
+ /// Constructs a new raw handle to the standard error stream of this process.
71
71
///
72
72
/// The returned handle does not interact with any other handles created nor
73
- /// handles returned by `std::io::stdout `.
73
+ /// handles returned by `std::io::stderr `.
74
74
///
75
75
/// The returned handle has no external synchronization or buffering layered on
76
76
/// top.
You can’t perform that action at this time.
0 commit comments