diff options
| author | Loïc Damien <dzamlo@users.noreply.github.com> | 2018-01-04 22:01:57 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-01-04 22:01:57 +0100 |
| commit | 8fc4a24062a4088b3b5af24d25c12f818b84c841 (patch) | |
| tree | d58ee2f63dcac8c48d4189001a0439ebd10dc215 /src/libstd | |
| parent | 8e7a609e635b728eba65d471c985ab462dc4cfc7 (diff) | |
| download | rust-8fc4a24062a4088b3b5af24d25c12f818b84c841.tar.gz rust-8fc4a24062a4088b3b5af24d25c12f818b84c841.zip | |
Fix an error in std::process documentation
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/process.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/process.rs b/src/libstd/process.rs index c3d1e82bc3f..33e8a87a0b6 100644 --- a/src/libstd/process.rs +++ b/src/libstd/process.rs @@ -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}; |
