File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -534,8 +534,8 @@ macro_rules! compatibility_check {
534
534
let imported_value = imported. iter( ) . find( |& ( k, _) | k == key) . map( |( _, v) | v) ;
535
535
536
536
let key_column = colored( AnsiColor :: GREY , key) . to_string( ) ;
537
- let binary_column = format_column( imported_value . as_deref( ) . copied( ) , exported_value . as_deref( ) . copied( ) , AnsiColor :: RED ) ;
538
- let module_column = format_column( exported_value . as_deref( ) . copied( ) , imported_value . as_deref( ) . copied( ) , AnsiColor :: GREEN ) ;
537
+ let binary_column = format_column( exported_value . as_deref( ) . copied( ) , imported_value . as_deref( ) . copied( ) , AnsiColor :: GREEN ) ;
538
+ let module_column = format_column( imported_value . as_deref( ) . copied( ) , exported_value . as_deref( ) . copied( ) , AnsiColor :: RED ) ;
539
539
540
540
fn format_column( primary: Option <& str >, secondary: Option <& str >, highlight_color: AnsiColor ) -> String {
541
541
match primary {
@@ -546,7 +546,7 @@ macro_rules! compatibility_check {
546
546
colored( highlight_color, value) . to_string( )
547
547
}
548
548
} ,
549
- None => colored( AnsiColor :: GREY , "∅" ) . to_string( ) ,
549
+ None => colored( AnsiColor :: RED , "∅" ) . to_string( ) ,
550
550
}
551
551
}
552
552
You can’t perform that action at this time.
0 commit comments