From: Martin Pool Date: Sat, 6 Jun 2015 00:32:34 +0000 (-0700) Subject: Another small grammar fix for process.rs X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=17d76b350b6fc73f7ea3fee9046b74740906bf37;p=rust.git Another small grammar fix for process.rs --- diff --git a/src/libstd/process.rs b/src/libstd/process.rs index e8f2c4eefd4..ee7cf009fc4 100644 --- a/src/libstd/process.rs +++ b/src/libstd/process.rs @@ -300,7 +300,7 @@ pub fn output(&mut self) -> io::Result { /// Executes a command as a child process, waiting for it to finish and /// collecting its exit status. /// - /// By default, stdin, stdout and stderr are inherited by the parent. + /// By default, stdin, stdout and stderr are inherited from the parent. /// /// # Examples ///