diff options
| author | Mark Simulacrum <mark.simulacrum@gmail.com> | 2017-07-24 09:16:35 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-07-24 09:16:35 -0600 |
| commit | d1ba747edc9fa8d2bcd78b37f5423265be69a76b (patch) | |
| tree | 9212775d2c362701655aac790f8e617429b2a6b8 /src/libstd | |
| parent | 32e607d4a8a03dd47f7e70cbb4e29afec65bc0b7 (diff) | |
| parent | 3cefd2b1d527b7f932b5c106b7722f26e09fb978 (diff) | |
| download | rust-d1ba747edc9fa8d2bcd78b37f5423265be69a76b.tar.gz rust-d1ba747edc9fa8d2bcd78b37f5423265be69a76b.zip | |
Rollup merge of #43379 - s3rvac:fix-exit-status-success-description, r=GuillaumeGomez
Add a missing verb to the description of std::process::ExitStatus::success() "Signal termination not considered" -> "Signal termination **is** not considered" The first line of the description was rewrapped so it fits into 80 characters.
Diffstat (limited to 'src/libstd')
| -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 7adfcc44ad0..31809e38239 100644 --- a/src/libstd/process.rs +++ b/src/libstd/process.rs @@ -799,8 +799,8 @@ impl From<fs::File> for Stdio { pub struct ExitStatus(imp::ExitStatus); impl ExitStatus { - /// Was termination successful? Signal termination not considered a success, - /// and success is defined as a zero exit status. + /// Was termination successful? Signal termination is not considered a + /// success, and success is defined as a zero exit status. /// /// # Examples /// |
