Skip to content

Commit 45e558e

Browse files
committed
fixed typo
1 parent 3fb5152 commit 45e558e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sniffs/Formatting/AlphabeticalUseStatementsSniff.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ public function process(PHP_CodeSniffer_File $phpcsFile, $stackPtr)
8484

8585
if ($this->_lastUseStatement !== '') {
8686
if (strcmp($this->_lastUseStatement, $currentUseStatement) > 0) {
87-
$msg = 'USE statements mus be sorted alphabetically';
87+
$msg = 'USE statements must be sorted alphabetically';
8888

8989
$phpcsFile->addError($msg, $stackPtr);
9090
}

0 commit comments

Comments
 (0)