File tree 1 file changed +4
-0
lines changed
1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -95,6 +95,8 @@ impl Write for StderrRaw {
95
95
///
96
96
/// This handle implements the `Read` trait, but beware that concurrent reads
97
97
/// of `Stdin` must be executed with care.
98
+ ///
99
+ /// Created by the function `io::stdin()`.
98
100
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
99
101
pub struct Stdin {
100
102
inner : Arc < Mutex < BufReader < StdinRaw > > > ,
@@ -206,6 +208,8 @@ const OUT_MAX: usize = ::usize::MAX;
206
208
/// Each handle shares a global buffer of data to be written to the standard
207
209
/// output stream. Access is also synchronized via a lock and explicit control
208
210
/// over locking is available via the `lock` method.
211
+ ///
212
+ /// Created by the function `io::stdout()`.
209
213
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
210
214
pub struct Stdout {
211
215
// FIXME: this should be LineWriter or BufWriter depending on the state of
You can’t perform that action at this time.
0 commit comments