Skip to content

Commit 82a1e5e

Browse files
committed
apply suggestions
1 parent 7a6c222 commit 82a1e5e

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

crates/biome_css_parser/src/syntax/selector/pseudo_class/function_selector.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,7 @@ use biome_parser::{Parser, SyntaxFeature};
1818

1919
/// Checks if the current parser position is at a pseudo-class function selector for CSS Modules and SFC Vue.
2020
///
21-
/// This function determines if the parser is currently positioned at the start of a
22-
/// `:local`, `:global`, `:slotted` or `:deep`
23-
/// pseudo-class function selector, which is part of the CSS Modules syntax.
21+
/// This function determines if the parser is currently positioned at the start of a `:local` or `:global`.
2422
#[inline]
2523
pub(crate) fn is_at_pseudo_class_function_selector(p: &mut CssParser) -> bool {
2624
p.at_ts(CSS_MODULES_SCOPE_SET) && p.nth_at(1, T!['('])

0 commit comments

Comments
 (0)