Rollup merge of #129916 - tshepang:basic-usage, r=ChrisDenton

process.rs: remove "Basic usage" text where not useful

Is not useful because just a single example is given.
This commit is contained in:
Matthias Krüger 2024-09-03 06:05:42 +02:00 committed by GitHub
commit 6e38c9bc83
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -617,8 +617,6 @@ impl Command {
/// ///
/// # Examples /// # Examples
/// ///
/// Basic usage:
///
/// ```no_run /// ```no_run
/// use std::process::Command; /// use std::process::Command;
/// ///
@ -699,8 +697,6 @@ impl Command {
/// ///
/// # Examples /// # Examples
/// ///
/// Basic usage:
///
/// ```no_run /// ```no_run
/// use std::process::Command; /// use std::process::Command;
/// ///
@ -748,8 +744,6 @@ impl Command {
/// ///
/// # Examples /// # Examples
/// ///
/// Basic usage:
///
/// ```no_run /// ```no_run
/// use std::process::Command; /// use std::process::Command;
/// ///
@ -786,8 +780,6 @@ impl Command {
/// ///
/// # Examples /// # Examples
/// ///
/// Basic usage:
///
/// ```no_run /// ```no_run
/// use std::process::Command; /// use std::process::Command;
/// ///
@ -822,8 +814,6 @@ impl Command {
/// ///
/// # Examples /// # Examples
/// ///
/// Basic usage:
///
/// ```no_run /// ```no_run
/// use std::process::{Command, Stdio}; /// use std::process::{Command, Stdio};
/// use std::env; /// use std::env;
@ -870,8 +860,6 @@ impl Command {
/// ///
/// # Examples /// # Examples
/// ///
/// Basic usage:
///
/// ```no_run /// ```no_run
/// use std::process::Command; /// use std::process::Command;
/// ///
@ -900,8 +888,6 @@ impl Command {
/// ///
/// # Examples /// # Examples
/// ///
/// Basic usage:
///
/// ```no_run /// ```no_run
/// use std::process::Command; /// use std::process::Command;
/// ///
@ -928,8 +914,6 @@ impl Command {
/// ///
/// # Examples /// # Examples
/// ///
/// Basic usage:
///
/// ```no_run /// ```no_run
/// use std::process::Command; /// use std::process::Command;
/// ///
@ -959,8 +943,6 @@ impl Command {
/// ///
/// # Examples /// # Examples
/// ///
/// Basic usage:
///
/// ```no_run /// ```no_run
/// use std::process::{Command, Stdio}; /// use std::process::{Command, Stdio};
/// ///
@ -988,8 +970,6 @@ impl Command {
/// ///
/// # Examples /// # Examples
/// ///
/// Basic usage:
///
/// ```no_run /// ```no_run
/// use std::process::{Command, Stdio}; /// use std::process::{Command, Stdio};
/// ///
@ -1017,8 +997,6 @@ impl Command {
/// ///
/// # Examples /// # Examples
/// ///
/// Basic usage:
///
/// ```no_run /// ```no_run
/// use std::process::{Command, Stdio}; /// use std::process::{Command, Stdio};
/// ///
@ -1039,8 +1017,6 @@ impl Command {
/// ///
/// # Examples /// # Examples
/// ///
/// Basic usage:
///
/// ```no_run /// ```no_run
/// use std::process::Command; /// use std::process::Command;
/// ///
@ -2105,8 +2081,6 @@ impl Child {
/// ///
/// # Examples /// # Examples
/// ///
/// Basic usage:
///
/// ```no_run /// ```no_run
/// use std::process::Command; /// use std::process::Command;
/// ///
@ -2129,8 +2103,6 @@ impl Child {
/// ///
/// # Examples /// # Examples
/// ///
/// Basic usage:
///
/// ```no_run /// ```no_run
/// use std::process::Command; /// use std::process::Command;
/// ///
@ -2158,8 +2130,6 @@ impl Child {
/// ///
/// # Examples /// # Examples
/// ///
/// Basic usage:
///
/// ```no_run /// ```no_run
/// use std::process::Command; /// use std::process::Command;
/// ///
@ -2194,8 +2164,6 @@ impl Child {
/// ///
/// # Examples /// # Examples
/// ///
/// Basic usage:
///
/// ```no_run /// ```no_run
/// use std::process::Command; /// use std::process::Command;
/// ///
@ -2398,15 +2366,11 @@ pub fn abort() -> ! {
/// ///
/// # Examples /// # Examples
/// ///
/// Basic usage:
///
/// ```no_run /// ```no_run
/// use std::process; /// use std::process;
/// ///
/// println!("My pid is {}", process::id()); /// println!("My pid is {}", process::id());
/// ``` /// ```
///
///
#[must_use] #[must_use]
#[stable(feature = "getpid", since = "1.26.0")] #[stable(feature = "getpid", since = "1.26.0")]
pub fn id() -> u32 { pub fn id() -> u32 {