Skip to content

Commit d8f9614

Browse files
committed
Use Child::std{in,out,err} instead of Child.
These links were broken before.
1 parent e005b71 commit d8f9614

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

library/std/src/process.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ impl fmt::Debug for Child {
215215
/// file handle will be closed. If the child process was blocked on input prior
216216
/// to being dropped, it will become unblocked after dropping.
217217
///
218-
/// [`stdin`]: crate::process::Child.stdin
218+
/// [`stdin`]: Child::stdin
219219
/// [dropped]: Drop
220220
#[stable(feature = "process", since = "1.0.0")]
221221
pub struct ChildStdin {
@@ -273,7 +273,7 @@ impl fmt::Debug for ChildStdin {
273273
/// When an instance of `ChildStdout` is [dropped], the `ChildStdout`'s
274274
/// underlying file handle will be closed.
275275
///
276-
/// [`stdout`]: crate::process::Child.stdout
276+
/// [`stdout`]: Child::stdout
277277
/// [dropped]: Drop
278278
#[stable(feature = "process", since = "1.0.0")]
279279
pub struct ChildStdout {
@@ -333,7 +333,7 @@ impl fmt::Debug for ChildStdout {
333333
/// When an instance of `ChildStderr` is [dropped], the `ChildStderr`'s
334334
/// underlying file handle will be closed.
335335
///
336-
/// [`stderr`]: crate::process::Child.stderr
336+
/// [`stderr`]: Child::stderr
337337
/// [dropped]: Drop
338338
#[stable(feature = "process", since = "1.0.0")]
339339
pub struct ChildStderr {

0 commit comments

Comments
 (0)