From 0f292b3923615afae40fe47c8d3925cb7a547409 Mon Sep 17 00:00:00 2001 From: Jake Hotson Date: Sun, 15 Feb 2026 15:16:10 +0000 Subject: [PATCH] [TASK] Update a code comment in `RuleSet` to use 'declaration' Missed in #1524. --- src/RuleSet/RuleSet.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/RuleSet/RuleSet.php b/src/RuleSet/RuleSet.php index b3c9cf0d..087ab30f 100644 --- a/src/RuleSet/RuleSet.php +++ b/src/RuleSet/RuleSet.php @@ -128,7 +128,7 @@ public function addRule(Declaration $declarationToAdd, ?Declaration $sibling = n } } if ($siblingIsInSet) { - // Increment column number of all existing rules on same line, starting at sibling + // Increment column number of all existing declarations on same line, starting at sibling $siblingLineNumber = $sibling->getLineNumber(); $siblingColumnNumber = $sibling->getColumnNumber(); foreach ($this->declarations as $declarationsForAProperty) {