Skip to content

Commit

Permalink
Add no_run to process examples involving unix commands
Browse files Browse the repository at this point in the history
  • Loading branch information
Technius committed Oct 29, 2017
1 parent 3566832 commit 84ab6ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/libstd/process.rs
Expand Up @@ -42,7 +42,7 @@
//! example, piping output from one command into another command can be done
//! like so:
//!
//! ```
//! ```no_run
//! use std::process::{Command, Stdio};
//!
//! // stdout must be configured with `Stdio::piped` in order to use
Expand Down Expand Up @@ -71,7 +71,7 @@
//! Note that [`ChildStderr`] and [`ChildStdout`] implement [`Write`] and
//! [`ChildStdin`] implements [`Read`]:
//!
//! ```
//! ```no_run
//! use std::process::{Command, Stdio};
//! use std::io::Write;
//!
Expand Down

0 comments on commit 84ab6ae

Please sign in to comment.