about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorSteve Klabnik <steve@steveklabnik.com>2015-10-19 17:14:08 -0400
committerSteve Klabnik <steve@steveklabnik.com>2015-10-19 17:14:08 -0400
commit2f2d8df534ce97d5bea408a79388b97ae6d9fa38 (patch)
treec6d32d53aa11d118ee8062fc52802e5f292d6759 /src/libstd
parentea3bf79baced33bd21d876261e01bed968f8eca1 (diff)
parent9431f3cc7b131a3413508901ed98e0c6cc0505c7 (diff)
downloadrust-2f2d8df534ce97d5bea408a79388b97ae6d9fa38.tar.gz
rust-2f2d8df534ce97d5bea408a79388b97ae6d9fa38.zip
Rollup merge of #29169 - apasel422:spell, r=steveklabnik
r? @steveklabnik
Diffstat (limited to 'src/libstd')
-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 4e80fb2ceb0..6e3c5eaf217 100644
--- a/src/libstd/process.rs
+++ b/src/libstd/process.rs
@@ -100,7 +100,7 @@ impl IntoInner<AnonPipe> for ChildStdin {
     fn into_inner(self) -> AnonPipe { self.inner }
 }
 
-/// A handle to a child procesess's stdout
+/// A handle to a child process's stdout
 #[stable(feature = "process", since = "1.0.0")]
 pub struct ChildStdout {
     inner: AnonPipe
@@ -121,7 +121,7 @@ impl IntoInner<AnonPipe> for ChildStdout {
     fn into_inner(self) -> AnonPipe { self.inner }
 }
 
-/// A handle to a child procesess's stderr
+/// A handle to a child process's stderr
 #[stable(feature = "process", since = "1.0.0")]
 pub struct ChildStderr {
     inner: AnonPipe