Skip to content

Commit 6751133

Browse files
committed
Fixed minor spelling issues in the process component (found by @stof and @wouterj)
1 parent c1c4424 commit 6751133

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

components/process.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ a command in a sub-process::
2727
$process->setTimeout(3600);
2828
$process->run();
2929
30-
// executes after the the command finishes
30+
// executes after the command finishes
3131
if (!$process->isSuccessful()) {
3232
throw new \RuntimeException($process->getErrorOutput());
3333
}
@@ -78,7 +78,7 @@ are done doing other stuff::
7878
$process = new Process('ls -lsa');
7979
$process->start();
8080
81-
// do other things
81+
// ... do other things
8282
8383
$process->wait(function ($type, $buffer) {
8484
if ('err' === $type) {

0 commit comments

Comments
 (0)