From 49a02dc6b68af7cf71c5bde1cb5820429b7b1679 Mon Sep 17 00:00:00 2001 From: Daniel Gomes Date: Sat, 4 Jan 2014 22:39:56 +0000 Subject: [PATCH] Fixed broken urls --- components/console/introduction.rst | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/components/console/introduction.rst b/components/console/introduction.rst index 4ca2bcfe8c1..0c799f8e84b 100644 --- a/components/console/introduction.rst +++ b/components/console/introduction.rst @@ -199,10 +199,10 @@ level. For example:: } .. versionadded:: 2.4 - The :method:`Symfony\\Component\Console\\Output\\Output::isQuiet`, - :method:`Symfony\\Component\Console\\Output\\Output::isVerbose`, - :method:`Symfony\\Component\Console\\Output\\Output::isVeryVerbose` and - :method:`Symfony\\Component\Console\\Output\\Output::isDebug` + The :method:`Symfony\\Component\\Console\\Output\\Output::isQuiet`, + :method:`Symfony\\Component\\Console\\Output\\Output::isVerbose`, + :method:`Symfony\\Component\\Console\\Output\\Output::isVeryVerbose` and + :method:`Symfony\\Component\\Console\\Output\\Output::isDebug` methods were introduced in version 2.4 There are also more semantic methods you can use to test for each of the @@ -225,7 +225,7 @@ verbosity levels:: } When the quiet level is used, all output is suppressed as the default -:method:`Symfony\Component\Console\Output::write ` +:method:`Symfony\Component\Console\Output::write ` method returns without actually printing. .. tip::