@@ -12,8 +12,8 @@ helper set, which you can get by calling
1212 $dialog = $this->getHelperSet()->get('dialog'); 
1313
1414All the methods inside the Dialog Helper have an
15- :class: `Symfony\\ Component\\ Console\\ Output\\ OutputInterface ` as first  the
16- argument, the question as the second argument and the default value as last
15+ :class: `Symfony\\ Component\\ Console\\ Output\\ OutputInterface ` as the first 
16+ argument, the question as the second argument and the default value as the  last
1717argument.
1818
1919Asking the User for confirmation
@@ -52,8 +52,9 @@ if you want to know a bundle name, you can add this to your command::
5252 ); 
5353
5454The user will be asked "Please enter the name of the bundle". They can type
55- some name which will be returned by the ``ask `` method. If they leave it empty,
56- the default value (``AcmeDemoBundle `` here) is returned.
55+ some name which will be returned by the
56+ :method: `Symfony\\ Component\\ Console\\ Helper\\ DialogHelper::ask ` method.
57+ If they leave it empty, the default value (``AcmeDemoBundle `` here) is returned.
5758
5859Autocompletion
5960~~~~~~~~~~~~~~ 
@@ -222,9 +223,12 @@ this set the seventh argument to ``true``::
222223 return $colors[$c]; 
223224 }, $selected); 
224225
225-  $output->writeln('You have just selected: ' . implode(', ', $selectedColors)); 
226+  $output->writeln( 
227+  'You have just selected: ' . implode(', ', $selectedColors) 
228+  ); 
226229
227- Now, when the user enters ``1,2 ``, the result will be: ``You have just selected: blue, yellow ``.
230+ Now, when the user enters ``1,2 ``, the result will be:
231+ ``You have just selected: blue, yellow ``.
228232
229233Testing a Command which expects input
230234------------------------------------- 
0 commit comments