]> git.lizzy.rs Git - rust.git/blobdiff - library/std/src/sys/vxworks/ext/process.rs
Rollup merge of #75485 - RalfJung:pin, r=nagisa
[rust.git] / library / std / src / sys / vxworks / ext / process.rs
index 3b2266e946548156433cd9bb6476871694fd4ed9..3ffa5be1b3bf1c64eafd74e09694cb4723822ae5 100644 (file)
@@ -10,8 +10,6 @@
 use crate::sys_common::{AsInner, AsInnerMut, FromInner, IntoInner};
 
 /// Unix-specific extensions to the [`process::Command`] builder.
-///
-/// [`process::Command`]: crate::process::Command
 #[stable(feature = "rust1", since = "1.0.0")]
 pub trait CommandExt {
     /// Sets the child process's user ID. This translates to a
@@ -94,7 +92,6 @@ fn before_exec<F>(&mut self, f: F) -> &mut process::Command
     /// a new child. Like spawn, however, the default behavior for the stdio
     /// descriptors will be to inherited from the current process.
     ///
-    /// [`process::exit`]: crate::process::exit
     ///
     /// # Notes
     ///
@@ -151,8 +148,6 @@ fn arg0<S>(&mut self, arg: S) -> &mut process::Command
 }
 
 /// Unix-specific extensions to [`process::ExitStatus`].
-///
-/// [`process::ExitStatus`]: crate::process::ExitStatus
 #[stable(feature = "rust1", since = "1.0.0")]
 pub trait ExitStatusExt {
     /// Creates a new `ExitStatus` from the raw underlying `i32` return value of