Skip to content

Commit

Permalink
style: Remove unnecessary mut usage.
Browse files Browse the repository at this point in the history
  • Loading branch information
emilio committed May 10, 2019
1 parent ca756a8 commit 4b76184
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/style/properties/declaration_block.rs
Expand Up @@ -1382,7 +1382,7 @@ fn report_css_errors(
selectors: Option<&SelectorList<SelectorImpl>>,
errors: &mut SmallParseErrorVec,
) {
for (mut error, slice, property) in errors.drain() {
for (error, slice, property) in errors.drain() {
report_one_css_error(context, Some(block), selectors, error, slice, property)
}
}
Expand Down

0 comments on commit 4b76184

Please sign in to comment.