From 3be3dde8062447099a5d2d923a6ca5b4a9186b93 Mon Sep 17 00:00:00 2001 From: Denis Gorbachev Date: Wed, 27 Feb 2013 22:04:11 +1300 Subject: [PATCH] [Console] Fixed comment --- src/Symfony/Component/Console/Output/Output.php | 4 ++-- src/Symfony/Component/Console/Output/OutputInterface.php | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Symfony/Component/Console/Output/Output.php b/src/Symfony/Component/Console/Output/Output.php index 4e3ffa1ab1..7fb40af14f 100644 --- a/src/Symfony/Component/Console/Output/Output.php +++ b/src/Symfony/Component/Console/Output/Output.php @@ -127,7 +127,7 @@ abstract class Output implements OutputInterface /** * Writes a message to the output and adds a newline at the end. * - * @param string|array $messages The message as an array of lines of a single string + * @param string|array $messages The message as an array of lines or a single string * @param integer $type The type of output * * @api @@ -140,7 +140,7 @@ abstract class Output implements OutputInterface /** * Writes a message to the output. * - * @param string|array $messages The message as an array of lines of a single string + * @param string|array $messages The message as an array of lines or a single string * @param Boolean $newline Whether to add a newline or not * @param integer $type The type of output * diff --git a/src/Symfony/Component/Console/Output/OutputInterface.php b/src/Symfony/Component/Console/Output/OutputInterface.php index 88ffba8878..245c51e874 100644 --- a/src/Symfony/Component/Console/Output/OutputInterface.php +++ b/src/Symfony/Component/Console/Output/OutputInterface.php @@ -33,7 +33,7 @@ interface OutputInterface /** * Writes a message to the output. * - * @param string|array $messages The message as an array of lines of a single string + * @param string|array $messages The message as an array of lines or a single string * @param Boolean $newline Whether to add a newline or not * @param integer $type The type of output * @@ -46,7 +46,7 @@ interface OutputInterface /** * Writes a message to the output and adds a newline at the end. * - * @param string|array $messages The message as an array of lines of a single string + * @param string|array $messages The message as an array of lines or a single string * @param integer $type The type of output * * @api