diff options
| author | Andy Russell <arussell123@gmail.com> | 2018-11-12 13:05:20 -0500 |
|---|---|---|
| committer | Andy Russell <arussell123@gmail.com> | 2018-11-13 14:45:31 -0500 |
| commit | 4e35cbb22eceac145a6f794cde869b3684e0b1d5 (patch) | |
| tree | ecd0cb5a9d4d5fd320029b88881c4c786b27513b /src/libstd/process.rs | |
| parent | 0195812aeafeecaa8760a4ddceae187472db8fe6 (diff) | |
| download | rust-4e35cbb22eceac145a6f794cde869b3684e0b1d5.tar.gz rust-4e35cbb22eceac145a6f794cde869b3684e0b1d5.zip | |
fix various typos in doc comments
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 a9219f75362..437153b56e4 100644 --- a/src/libstd/process.rs +++ b/src/libstd/process.rs @@ -1119,7 +1119,7 @@ impl From<fs::File> for Stdio { /// let file = File::open("foo.txt").unwrap(); /// /// let reverse = Command::new("rev") - /// .stdin(file) // Implicit File convertion into a Stdio + /// .stdin(file) // Implicit File conversion into a Stdio /// .output() /// .expect("failed reverse command"); /// @@ -1337,7 +1337,7 @@ impl Child { /// Attempts to collect the exit status of the child if it has already /// exited. /// - /// This function will not block the calling thread and will only advisorily + /// This function will not block the calling thread and will only /// check to see if the child process has exited or not. If the child has /// exited then on Unix the process id is reaped. This function is /// guaranteed to repeatedly return a successful exit status so long as the |
