Skip to content

Commit 1d8b855

Browse files
authored
[BUGFIX] Correct an exception message (#1296)
This correction is not worthy of a changelog entry or any tests.
1 parent 1dde3cb commit 1d8b855

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/RuleSet/DeclarationBlock.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ public function setSelectors($selectors, ?CSSList $list = null): void
9797
if (!Selector::isValid($selector)) {
9898
throw new UnexpectedTokenException(
9999
"Selector did not match '" . Selector::SELECTOR_VALIDATION_RX . "'.",
100-
$selectors,
100+
$selector,
101101
'custom'
102102
);
103103
}

0 commit comments

Comments
 (0)