From c3f46d78a096e69f57a65ba3dd3596c160488733 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emilio=20Cobos=20=C3=81lvarez?= Date: Wed, 13 Mar 2019 12:14:16 +0100 Subject: [PATCH] style: Add two commas to appease tidy. --- components/style_derive/to_css.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 } }