Skip to content

Commit 74a3000

Browse files
committed
minor #12887 [Console] Fix code example for definitionList (urkob)
This PR was merged into the 4.4 branch. Discussion ---------- [Console] Fix code example for definitionList Hi Some comma in the argument list of definitionList in SymfonyStyle was missing. Commits ------- 2f2d84b Fix code example for definitionList.
2 parents b8ff31a + 2f2d84b commit 74a3000

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

console/style.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -162,8 +162,8 @@ Content Methods
162162
$io->definitionList(
163163
'This is a title',
164164
['foo1' => 'bar1'],
165-
['foo2' => 'bar2']
166-
['foo3' => 'bar3']
165+
['foo2' => 'bar2'],
166+
['foo3' => 'bar3'],
167167
new TableSeparator(),
168168
'This is another title',
169169
['foo4' => 'bar4']

0 commit comments

Comments
 (0)