Skip to content

Commit 39b4430

Browse files
committed
Minor language tweaks
1 parent 278de83 commit 39b4430

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

components/console/helpers/processhelper.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Arguments
3838

3939
There are three ways to use the process helper:
4040

41-
* Either using a command line string::
41+
* Using a command line string::
4242

4343
// ...
4444
$helper->run($output, 'figlet Symfony');
@@ -51,9 +51,9 @@ There are three ways to use the process helper:
5151
.. note::
5252

5353
When running the helper against an array of arguments, be aware that
54-
these ones will be automatically escaped.
54+
these will be automatically escaped.
5555

56-
* Or a :class:`Symfony\\Component\\Process\\Process` instance::
56+
* Passing a :class:`Symfony\\Component\\Process\\Process` instance::
5757

5858
use Symfony\Component\Process\ProcessBuilder;
5959

@@ -70,7 +70,7 @@ You can display a customized error message using the third argument of the
7070

7171
$helper->run($output, $process, 'The process failed :(');
7272

73-
A custom process callback can be passed as fourth argument, refer to the
73+
A custom process callback can be passed as the fourth argument. Refer to the
7474
:doc:`Process Component </components/process>` for callback documentation::
7575

7676
use Symfony\Component\Process\Process;

0 commit comments

Comments
 (0)