diff options
Diffstat (limited to 'components/selectors/parser.rs')
-rw-r--r-- | components/selectors/parser.rs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/components/selectors/parser.rs b/components/selectors/parser.rs index fa043b772a9..488628cd712 100644 --- a/components/selectors/parser.rs +++ b/components/selectors/parser.rs @@ -1959,8 +1959,9 @@ where let name = match input.next_including_whitespace()? { &Token::Ident(ref name) => name.clone(), t => { - return Err(location - .new_custom_error(SelectorParseErrorKind::NoIdentForPseudo(t.clone()))); + return Err(location.new_custom_error( + SelectorParseErrorKind::NoIdentForPseudo(t.clone()), + )); }, }; |