Skip to content

Commit e24625b

Browse files
committed
Merge branch 'issue1185bf' of github.com:Sgoettschkes/symfony-docs into Sgoettschkes-issue1185bf
Conflicts: components/process.rst
2 parents b2a3b1d + 6751133 commit e24625b

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
@@ -26,7 +26,7 @@ a command in a sub-process::
2626
$process = new Process('ls -lsa');
2727
$process->run();
2828

29-
// executes after the the command finishes
29+
// executes after the command finishes
3030
if (!$process->isSuccessful()) {
3131
throw new \RuntimeException($process->getErrorOutput());
3232
}
@@ -77,7 +77,7 @@ are done doing other stuff::
7777
$process = new Process('ls -lsa');
7878
$process->start();
7979
80-
// do other things
80+
// ... do other things
8181
8282
$process->wait(function ($type, $buffer) {
8383
if ('err' === $type) {

0 commit comments

Comments
 (0)