diff options
Diffstat (limited to 'components/style/selector_matching.rs')
-rw-r--r-- | components/style/selector_matching.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/style/selector_matching.rs b/components/style/selector_matching.rs index 76e30c70d82..a793fec1ff4 100644 --- a/components/style/selector_matching.rs +++ b/components/style/selector_matching.rs @@ -525,10 +525,10 @@ impl Stylist { /// Map that contains the CSS rules for a given origin. #[cfg_attr(feature = "servo", derive(HeapSizeOf))] struct PerOriginSelectorMap { - /// Rules that contains at least one property declararion with + /// Rules that contains at least one property declaration with /// normal importance. normal: SelectorMap<Vec<PropertyDeclaration>, TheSelectorImpl>, - /// Rules that contains at least one property declararion with + /// Rules that contains at least one property declaration with /// !important. important: SelectorMap<Vec<PropertyDeclaration>, TheSelectorImpl>, } |