aboutsummaryrefslogtreecommitdiffstats
path: root/components
diff options
context:
space:
mode:
Diffstat (limited to 'components')
-rw-r--r--components/style_derive/animate.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/style_derive/animate.rs b/components/style_derive/animate.rs
index ccccdf9d0df..16c3ee12272 100644
--- a/components/style_derive/animate.rs
+++ b/components/style_derive/animate.rs
@@ -25,7 +25,7 @@ pub fn derive(mut input: DeriveInput) -> TokenStream {
let s = Structure::new(&input);
let mut append_error_clause = s.variants().len() > 1;
- let mut match_body = s.variants().iter().fold(quote!(), |body, variant| {
+ let match_body = s.variants().iter().fold(quote!(), |body, variant| {
let arm = match derive_variant_arm(variant, &mut where_clause) {
Ok(arm) => arm,
Err(()) => {