Skip to content

Commit 9b0911b

Browse files
committed
fix grammer mistake
1 parent dd16589 commit 9b0911b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

components/console/logger.rst

+6-6
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,9 @@ Using the Logger
99
introduced in Symfony 2.5.
1010

1111
The Console component comes with a standalone logger complying with the
12-
`PSR-3_` standard.
13-
Depending of the verbosity setting, log messages will be sent to the
14-
:class:`Symfony\\Component\\Console\\Output\\OutputInterface` instance
15-
passed as a parameter to the constructor.
12+
`PSR-3_` standard. Depending on the verbosity setting, log messages will
13+
be sent to the :class:`Symfony\\Component\\Console\\Output\\OutputInterface`
14+
instance passed as a parameter to the constructor.
1615

1716
The logger does not have any external dependency except ``php-fig/log``.
1817
This is useful for console applications and commands needing a lightweight
@@ -76,7 +75,8 @@ Verbosity
7675
---------
7776

7877
Depending on the verbosity level that the command is run, messages may or
79-
may not be sent to the ``Symfony\\Component\\Console\\Output\\OutputInterface`` instance.
78+
may not be sent to the ``Symfony\\Component\\Console\\Output\\OutputInterface``
79+
instance.
8080

8181
By default, the console logger behaves like the
8282
:doc:`Monolog's Console Handler </cookbook/logging/monolog_console>`.
@@ -105,4 +105,4 @@ constructor::
105105
);
106106
$logger = new ConsoleLogger($output, array(), $formatLevelMap);
107107

108-
.. _PSR-3: http://www.php-fig.org/psr/psr-3/
108+
.. _PSR-3: http://www.php-fig.org/psr/psr-3/

0 commit comments

Comments
 (0)