Skip to content

Commit d0aa4ce

Browse files
committed
[symfony#1999] Making a few fixes per @wouterj
1 parent 2771d8a commit d0aa4ce

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

components/console/helpers/dialoghelper.rst

+5-4
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@
44
Dialog Helper
55
=============
66

7-
The Dialog Helper provides functions to ask the user for more information.
8-
It is included in the default helper set, which you can get
9-
by calling :method:`Symfony\\Component\\Console\\Command\\Command::getHelperSet`::
7+
The :class:`Symfony\\Component\\Console\\Helper\\DialogHelper` provides
8+
functions to ask the user for more information. It is included in the default
9+
helper set, which you can get by calling
10+
:method:`Symfony\\Component\\Console\\Command\\Command::getHelperSet`::
1011

1112
$dialog = $this->getHelperSet()->get('dialog');
1213

@@ -19,7 +20,7 @@ Asking the User for confirmation
1920
--------------------------------
2021

2122
Suppose you want to confirm an action before actually executing it. Add
22-
the following to you command::
23+
the following to your command::
2324

2425
// ...
2526
if (!$dialog->askConfirmation(

components/console/helpers/formatterhelper.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ The Formatter helpers provides functions to format the output with colors.
88
You can do more advanced things with this helper than you can in
99
:ref:`components-console-coloring`.
1010

11-
The ``formatter`` helper is included in the default helper set, which you can
12-
get by calling
11+
The :class:`Symfony\\Component\\Console\\Helper\\FormatterHelper` is included
12+
in the default helper set, which you can get by calling
1313
:method:`Symfony\\Component\\Console\\Command\\Command::getHelperSet`::
1414

1515
$formatter = $this->getHelperSet()->get('formatter');

0 commit comments

Comments
 (0)