about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorMartin Pool <mbp@sourcefrog.net>2015-06-05 17:32:34 -0700
committerMartin Pool <mbp@sourcefrog.net>2015-06-05 17:32:34 -0700
commit17d76b350b6fc73f7ea3fee9046b74740906bf37 (patch)
treecf22800a4edd35ac402dd631bb598c189c87e933 /src/libstd
parentcd9085489925601596773e9dbdec99432ed4255b (diff)
downloadrust-17d76b350b6fc73f7ea3fee9046b74740906bf37.tar.gz
rust-17d76b350b6fc73f7ea3fee9046b74740906bf37.zip
Another small grammar fix for process.rs
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/process.rs2
1 files changed, 1 insertions, 1 deletions
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 @@ impl Command {
     /// 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
     ///