diff --git a/tokio-net/src/process/mod.rs b/tokio-net/src/process/mod.rs index ba79b1b81..e1e6cce84 100644 --- a/tokio-net/src/process/mod.rs +++ b/tokio-net/src/process/mod.rs @@ -663,19 +663,19 @@ impl Child { } /// Returns a handle for writing to the child's stdin, if it has been - /// captured + /// captured. pub fn stdin(&mut self) -> &mut Option { &mut self.stdin } - /// Returns a handle for writing to the child's stdout, if it has been - /// captured + /// Returns a handle for reading from the child's stdout, if it has been + /// captured. pub fn stdout(&mut self) -> &mut Option { &mut self.stdout } - /// Returns a handle for writing to the child's stderr, if it has been - /// captured + /// Returns a handle for reading from the child's stderr, if it has been + /// captured. pub fn stderr(&mut self) -> &mut Option { &mut self.stderr }