8000 minor #27777 [Console] fix typo in phpdoc (Tobion) · fancyweb/symfony@e3bdbed · GitHub
[go: up one dir, main page]

Skip to content

Commit e3bdbed

Browse files
minor symfony#27777 [Console] fix typo in phpdoc (Tobion)
This PR was merged into the 2.8 branch. Discussion ---------- [Console] fix typo in phpdoc | Q | A | ------------- | --- | Branch? | 4.1 (symfony#26847) | Bug fix? | no | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | - | License | MIT | Doc PR | - Commits ------- 7aa4557 [Console] fix typo in phpdoc
2 parents 66b9ebc + 7aa4557 commit e3bdbed

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 808B 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