Skip to content

Commit 0b22524

Browse files
committed
Fixed documentation.
1 parent e23b0d9 commit 0b22524

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Utils/Formatter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@ public function formatList($list)
390390
if (!((($prev->type === Token::TYPE_OPERATOR) && (($prev->value === '.') || ($prev->value === '(')))
391391
// No space after . (
392392
|| (($curr->type === Token::TYPE_OPERATOR) && (($curr->value === '.') || ($curr->value === ',') || ($curr->value === '(') || ($curr->value === ')')))
393-
// No space before . , )
393+
// No space before . , ( )
394394
|| (($curr->type === Token::TYPE_DELIMITER)) && (mb_strlen($curr->value, 'UTF-8') < 2))
395395
// A space after delimiters that are longer than 2 characters.
396396
|| ($prev->value === 'DELIMITER')

0 commit comments

Comments
 (0)