Skip to content

Commit

Permalink
Rollup merge of rust-lang#100839 - nelsonjchen:consistent_child_stdin…
Browse files Browse the repository at this point in the history
…_field_desc, r=thomcc

Make doc for stdin field of process consistent

The other fields use this format and example.
  • Loading branch information
matthiaskrgr authored Aug 21, 2022
2 parents 4c523b5 + 7abbfa8 commit 2c13da6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions library/std/src/process.rs
Original file line number Diff line number Diff line change
Expand Up @@ -169,15 +169,15 @@ use crate::sys_common::{AsInner, AsInnerMut, FromInner, IntoInner};
pub struct Child {
pub(crate) handle: imp::Process,

/// The handle for writing to the child's standard input (stdin), if it has
/// been captured. To avoid partially moving
/// the `child` and thus blocking yourself from calling
/// functions on `child` while using `stdin`,
/// you might find it helpful:
/// The handle for writing to the child's standard input (stdin), if it
/// has been captured. You might find it helpful to do
///
/// ```compile_fail,E0425
/// let stdin = child.stdin.take().unwrap();
/// ```
///
/// to avoid partially moving the `child` and thus blocking yourself from calling
/// functions on `child` while using `stdin`.
#[stable(feature = "process", since = "1.0.0")]
pub stdin: Option<ChildStdin>,

Expand Down

0 comments on commit 2c13da6

Please sign in to comment.