Skip to content

Commit

Permalink
Fix an error in std::process documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
dzamlo authored Jan 4, 2018
1 parent 8e7a609 commit 8fc4a24
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/libstd/process.rs
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@
//! assert_eq!(b"Oh no, a typo!\n", output.stdout.as_slice());
//! ```
//!
//! Note that [`ChildStderr`] and [`ChildStdout`] implement [`Write`] and
//! [`ChildStdin`] implements [`Read`]:
//! Note that [`ChildStderr`] and [`ChildStdout`] implement [`Read`] and
//! [`ChildStdin`] implements [`Write`]:
//!
//! ```no_run
//! use std::process::{Command, Stdio};
Expand Down

0 comments on commit 8fc4a24

Please sign in to comment.