diff --git a/components/style_derive/to_css.rs b/components/style_derive/to_css.rs index 3a1bc9f4c6c..249ff2969cd 100644 --- a/components/style_derive/to_css.rs +++ b/components/style_derive/to_css.rs @@ -151,7 +151,7 @@ fn derive_variant_fields_expr( if let Some(condition) = attrs.contextual_skip_if { expr = quote! { - if !#condition(#(#bindings),*) { + if !#condition(#(#bindings), *) { #expr } } @@ -227,7 +227,7 @@ fn derive_single_field_expr( if let Some(condition) = attrs.contextual_skip_if { expr = quote! { - if !#condition(#(#bindings),*) { + if !#condition(#(#bindings), *) { #expr } }