about summary refs log tree commit diff
diff options
context:
space:
mode:
authorkennytm <kennytm@gmail.com>2018-01-05 17:22:12 +0800
committerGitHub <noreply@github.com>2018-01-05 17:22:12 +0800
commit71c8e106e3b5cd8bea807e57d86c1de49aed6260 (patch)
tree5b1e4c3e835a8379277f235ebb0aaf2a485c8bd1
parent1fea75192e98f86a6c211af8bf108ffbaebc80c6 (diff)
parent8fc4a24062a4088b3b5af24d25c12f818b84c841 (diff)
downloadrust-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.rs4
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};