1
Fork 0

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.
This commit is contained in:
Petr Zemek 2017-07-21 08:44:53 +02:00
parent e3c8433ebb
commit 3cefd2b1d5

View file

@ -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
///