diff options
| author | Andrew Paseltiner <apaseltiner@gmail.com> | 2015-10-19 13:45:33 -0400 |
|---|---|---|
| committer | Andrew Paseltiner <apaseltiner@gmail.com> | 2015-10-19 13:48:42 -0400 |
| commit | 9431f3cc7b131a3413508901ed98e0c6cc0505c7 (patch) | |
| tree | a7ff05a68862d944d4afe522e1432bf7e4b0ab71 /src/libstd/process.rs | |
| parent | 7aec91734e0c12b8e36158566ad512a663111c9f (diff) | |
| download | rust-9431f3cc7b131a3413508901ed98e0c6cc0505c7.tar.gz rust-9431f3cc7b131a3413508901ed98e0c6cc0505c7.zip | |
Correct spelling in docs
Diffstat (limited to 'src/libstd/process.rs')
| -rw-r--r-- | src/libstd/process.rs | 4 |
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 |
