mirror of
https://github.com/danog/parallel.git
synced 2025-01-22 14:01:14 +01:00
Fixed typo in exception message
When the process cannot be started it tells me "Staring the process failed". You can stare at a process all you want, but it should be "Starting".
This commit is contained in:
parent
b9d6720c83
commit
354e64db09
@ -194,7 +194,7 @@ final class Process implements Context
|
|||||||
return $pid;
|
return $pid;
|
||||||
} catch (\Throwable $exception) {
|
} catch (\Throwable $exception) {
|
||||||
$this->process->kill();
|
$this->process->kill();
|
||||||
throw new ContextException("Staring the process failed", 0, $exception);
|
throw new ContextException("Starting the process failed", 0, $exception);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user