Skip to content

Commit 3cefd2b

Browse files
committed
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.
1 parent e3c8433 commit 3cefd2b

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)