@@ -106,15 +106,18 @@ use sys_common::{AsInner, AsInnerMut, FromInner, IntoInner};
106
106
pub struct Child {
107
107
handle : imp:: Process ,
108
108
109
- /// The handle for writing to the child's stdin, if it has been captured
109
+ /// The handle for writing to the child's standard input (stdin), if it has
110
+ /// been captured.
110
111
#[ stable( feature = "process" , since = "1.0.0" ) ]
111
112
pub stdin : Option < ChildStdin > ,
112
113
113
- /// The handle for reading from the child's stdout, if it has been captured
114
+ /// The handle for reading from the child's standard output (stdout), if it
115
+ /// has been captured.
114
116
#[ stable( feature = "process" , since = "1.0.0" ) ]
115
117
pub stdout : Option < ChildStdout > ,
116
118
117
- /// The handle for reading from the child's stderr, if it has been captured
119
+ /// The handle for reading from the child's standard error (stderr), if it
120
+ /// has been captured.
118
121
#[ stable( feature = "process" , since = "1.0.0" ) ]
119
122
pub stderr : Option < ChildStderr > ,
120
123
}
@@ -149,7 +152,7 @@ impl fmt::Debug for Child {
149
152
}
150
153
}
151
154
152
- /// A handle to a child process's stdin.
155
+ /// A handle to a child process's standard input ( stdin) .
153
156
///
154
157
/// This struct is used in the [`stdin`] field on [`Child`].
155
158
///
@@ -196,7 +199,7 @@ impl fmt::Debug for ChildStdin {
196
199
}
197
200
}
198
201
199
- /// A handle to a child process's stdout.
202
+ /// A handle to a child process's standard output ( stdout) .
200
203
///
201
204
/// This struct is used in the [`stdout`] field on [`Child`].
202
205
///
@@ -546,7 +549,8 @@ impl Command {
546
549
self
547
550
}
548
551
549
- /// Configuration for the child process's stdin handle (file descriptor 0).
552
+ /// Configuration for the child process's standard input (stdin) handle
553
+ /// (file descriptor 0).
550
554
///
551
555
/// # Examples
552
556
///
@@ -566,7 +570,8 @@ impl Command {
566
570
self
567
571
}
568
572
569
- /// Configuration for the child process's stdout handle (file descriptor 1).
573
+ /// Configuration for the child process's standard output (stdout) handle
574
+ /// (file descriptor 1).
570
575
///
571
576
/// # Examples
572
577
///
@@ -586,7 +591,8 @@ impl Command {
586
591
self
587
592
}
588
593
589
- /// Configuration for the child process's stderr handle (file descriptor 2).
594
+ /// Configuration for the child process's standard error (stderr) handle
595
+ /// (file descriptor 2).
590
596
///
591
597
/// # Examples
592
598
///
0 commit comments