8000 [Console] fix typo in phpdoc · fancyweb/symfony@7aa4557 · GitHub
[go: up one dir, main page]

Skip to content

Commit 7aa4557

Browse files
Tobionnicolas-grekas
authored andcommitted
[Console] fix typo in phpdoc
1 parent 66b9ebc commit 7aa4557

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Symfony/Component/Console/Output/OutputInterface.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ interface OutputInterface
3333
/**
3434
* Writes a message to the output.
3535
*
36-
* @param string|array $messages The message as an array of lines or a single string
36+
* @param string|array $messages The message as an array of strings or a single string
3737
* @param bool $newline Whether to add a newline
3838
* @param int $options A bitmask of options (one of the OUTPUT or VERBOSITY constants), 0 is considered the same as self::OUTPUT_NORMAL | self::VERBOSITY_NORMAL
3939
*/
@@ -42,7 +42,7 @@ public function write($messages, $newline = false, $options = 0);
4242
/**
4343
* Writes a message to the output and adds a newline at the end.
4444
*
45-
* @param string|array $messages The message as an array of lines of a single string
45+
* @param string|array $messages The message as an array of strings or a single string
4646
* @param int $options A bitmask of options (one of the OUTPUT or VERBOSITY constants), 0 is considered the same as self::OUTPUT_NORMAL | self::VERBOSITY_NORMAL
4747
*/
4848
public function writeln($messages, $options = 0);

0 commit comments

Comments
 (0)
0