1
0
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:
Pieter Hordijk 2018-11-08 03:36:13 +03:00 committed by Aaron Piotrowski
parent b9d6720c83
commit 354e64db09

View File

@ -194,7 +194,7 @@ final class Process implements Context
return $pid;
} catch (\Throwable $exception) {
$this->process->kill();
throw new ContextException("Staring the process failed", 0, $exception);
throw new ContextException("Starting the process failed", 0, $exception);
}
});
}