Skip to content

Commit

Permalink
style: Add two commas to appease tidy.
Browse files Browse the repository at this point in the history
  • Loading branch information
emilio committed Mar 13, 2019
1 parent 8020fae commit c3f46d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/style_derive/to_css.rs
Expand Up @@ -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
}
}
Expand Down Expand Up @@ -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
}
}
Expand Down

0 comments on commit c3f46d7

Please sign in to comment.