mirror of
https://github.com/servo/servo.git
synced 2025-06-21 15:49:04 +01:00
style: Fix formatting.
This commit is contained in:
parent
cd75cd6a86
commit
06fe0a1fc0
7 changed files with 34 additions and 20 deletions
|
@ -325,7 +325,11 @@ impl MediaFeatureExpression {
|
|||
};
|
||||
|
||||
let atom = Atom::from(string_as_ascii_lowercase(feature_name));
|
||||
match MEDIA_FEATURES.iter().enumerate().find(|(_, f)| f.name == atom) {
|
||||
match MEDIA_FEATURES
|
||||
.iter()
|
||||
.enumerate()
|
||||
.find(|(_, f)| f.name == atom)
|
||||
{
|
||||
Some((i, f)) => Ok((i, f, range)),
|
||||
None => Err(()),
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue