Skip to content

Commit

Permalink
Fixed typos
Browse files Browse the repository at this point in the history
  • Loading branch information
javiereguiluz authored and weaverryan committed Jul 7, 2015
1 parent b86ffb6 commit 2c491be
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
13 changes: 7 additions & 6 deletions components/console/introduction.rst
Original file line number Diff line number Diff line change
Expand Up @@ -490,15 +490,16 @@ returns the returned code from the command (return value from command's

.. tip::

If you want to suppress the output of the executed command, pass a :class:`Symfony\\Component\\Console\\Output\\NullOutput`
as the second argument to ``$command->execute()``.
If you want to suppress the output of the executed command, pass a
:class:`Symfony\\Component\\Console\\Output\\NullOutput` as the second
argument to ``$command->execute()``.

.. caution::

Note that all the commands will run in the same process, and some of Symfony's
built-in commands may not work well this way. For instance, ``cache:clear``
and ``cache:warmup`` commands change some class definitions, so running something
after them is likely to break.
Note that all the commands will run in the same process and some of Symfony's
built-in commands may not work well this way. For instance, the ``cache:clear``
and ``cache:warmup`` commands change some class definitions, so running
something after them is likely to break.

.. note::

Expand Down
2 changes: 1 addition & 1 deletion cookbook/console/console_command.rst
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ before translating contents::
However for other services the solution might be more complex. For more details,
see :doc:`/cookbook/service_container/scopes`.

Invoking Other Commands
Invoking other Commands
-----------------------

See :ref:`calling-existing-command` if you need to implement a command that runs
Expand Down

0 comments on commit 2c491be

Please sign in to comment.