diff options
| author | kennytm <kennytm@gmail.com> | 2018-01-05 17:22:12 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-01-05 17:22:12 +0800 |
| commit | 71c8e106e3b5cd8bea807e57d86c1de49aed6260 (patch) | |
| tree | 5b1e4c3e835a8379277f235ebb0aaf2a485c8bd1 | |
| parent | 1fea75192e98f86a6c211af8bf108ffbaebc80c6 (diff) | |
| parent | 8fc4a24062a4088b3b5af24d25c12f818b84c841 (diff) | |
| download | rust-71c8e106e3b5cd8bea807e57d86c1de49aed6260.tar.gz rust-71c8e106e3b5cd8bea807e57d86c1de49aed6260.zip | |
Rollup merge of #47198 - dzamlo:patch-2, r=frewsxcv
Fix an error in std::process documentation
| -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}; |
