We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1c4424 commit 6751133Copy full SHA for 6751133
components/process.rst
@@ -27,7 +27,7 @@ a command in a sub-process::
27
$process->setTimeout(3600);
28
$process->run();
29
30
- // executes after the the command finishes
+ // executes after the command finishes
31
if (!$process->isSuccessful()) {
32
throw new \RuntimeException($process->getErrorOutput());
33
}
@@ -78,7 +78,7 @@ are done doing other stuff::
78
$process = new Process('ls -lsa');
79
$process->start();
80
81
- // do other things
+ // ... do other things
82
83
$process->wait(function ($type, $buffer) {
84
if ('err' === $type) {
0 commit comments