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.
2 parents b2a3b1d + 6751133 commit e24625bCopy full SHA for e24625b
components/process.rst
@@ -26,7 +26,7 @@ a command in a sub-process::
26
$process = new Process('ls -lsa');
27
$process->run();
28
29
- // executes after the the command finishes
+ // executes after the command finishes
30
if (!$process->isSuccessful()) {
31
throw new \RuntimeException($process->getErrorOutput());
32
}
@@ -77,7 +77,7 @@ are done doing other stuff::
77
78
$process->start();
79
80
- // do other things
+ // ... do other things
81
82
$process->wait(function ($type, $buffer) {
83
if ('err' === $type) {
0 commit comments