Skip to content

Commit

Permalink
Fixed variable naming
Browse files Browse the repository at this point in the history
  • Loading branch information
peterrehm committed Apr 7, 2014
1 parent 1172b7d commit 66581a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/console/helpers/tablehelper.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ When building a console application it may be useful to display tabular data:
To display a table, use the :class:`Symfony\\Component\\Console\\Helper\\TableHelper`,
set headers, rows and render::

$table = $app->getHelperSet()->get('table');
$table = $this->getHelperSet()->get('table');
$table
->setHeaders(array('ISBN', 'Title', 'Author'))
->setRows(array(
Expand Down

0 comments on commit 66581a6

Please sign in to comment.