Skip to content

Commit d1ba747

Browse files
Rollup merge of rust-lang#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.
2 parents 32e607d + 3cefd2b commit d1ba747

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/libstd/process.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -799,8 +799,8 @@ impl From<fs::File> for Stdio {
799799
pub struct ExitStatus(imp::ExitStatus);
800800

801801
impl ExitStatus {
802-
/// Was termination successful? Signal termination not considered a success,
803-
/// and success is defined as a zero exit status.
802+
/// Was termination successful? Signal termination is not considered a
803+
/// success, and success is defined as a zero exit status.
804804
///
805805
/// # Examples
806806
///

0 commit comments

Comments
 (0)