File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 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 {
9595///
9696/// This handle implements the `Read` trait, but beware that concurrent reads
9797/// of `Stdin` must be executed with care.
98+ ///
99+ /// Created by the function `io::stdin()`.
98100#[ stable( feature = "rust1" , since = "1.0.0" ) ]
99101pub struct Stdin {
100102 inner : Arc < Mutex < BufReader < StdinRaw > > > ,
@@ -206,6 +208,8 @@ const OUT_MAX: usize = ::usize::MAX;
206208/// Each handle shares a global buffer of data to be written to the standard
207209/// output stream. Access is also synchronized via a lock and explicit control
208210/// over locking is available via the `lock` method.
211+ ///
212+ /// Created by the function `io::stdout()`.
209213#[ stable( feature = "rust1" , since = "1.0.0" ) ]
210214pub struct Stdout {
211215 // FIXME: this should be LineWriter or BufWriter depending on the state of
You can’t perform that action at this time.
0 commit comments