summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorPirh <pirh.badger@gmail.com>2017-10-10 17:58:13 +0100
committerPirh <pirh.badger@gmail.com>2017-10-10 17:58:13 +0100
commit210c91100fe76926647eb5d71a77dc3b527ef038 (patch)
tree534249ba4d24d84a3071a36f6c2ec9404ca73a86 /src/libstd
parent6f653bb1b15b327c1adb5018e2957631cd708d5d (diff)
downloadrust-210c91100fe76926647eb5d71a77dc3b527ef038.tar.gz
rust-210c91100fe76926647eb5d71a77dc3b527ef038.zip
Remove misleading line on Windows Subsystem stdio
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/process.rs9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/libstd/process.rs b/src/libstd/process.rs
index 1352c640fdd..d110fcfee6b 100644
--- a/src/libstd/process.rs
+++ b/src/libstd/process.rs
@@ -555,9 +555,6 @@ impl Command {
     /// Defaults to [`inherit`] when used with `spawn` or `status`, and
     /// defaults to [`piped`] when used with `output`.
     ///
-    /// On Windows, if the `#![windows_subsystem = "windows"]` attribute is
-    /// set, no stdin is connected unless explicitly assigned.
-    ///
     /// [`inherit`]: struct.Stdio.html#method.inherit
     /// [`piped`]: struct.Stdio.html#method.piped
     ///
@@ -584,9 +581,6 @@ impl Command {
     /// Defaults to [`inherit`] when used with `spawn` or `status`, and
     /// defaults to [`piped`] when used with `output`.
     ///
-    /// On Windows, if the `#![windows_subsystem = "windows"]` attribute is
-    /// set, no stdout is connected unless explicitly assigned.
-    ///
     /// [`inherit`]: struct.Stdio.html#method.inherit
     /// [`piped`]: struct.Stdio.html#method.piped
     ///
@@ -613,9 +607,6 @@ impl Command {
     /// Defaults to [`inherit`] when used with `spawn` or `status`, and
     /// defaults to [`piped`] when used with `output`.
     ///
-    /// On Windows, if the `#![windows_subsystem = "windows"]` attribute is
-    /// set, no stderr is connected unless explicitly assigned.
-    ///
     /// [`inherit`]: struct.Stdio.html#method.inherit
     /// [`piped`]: struct.Stdio.html#method.piped
     ///