File tree 1 file changed +3
-3
lines changed
compiler/rustc_middle/src/ty/print
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -688,7 +688,7 @@ pub trait PrettyPrinter<'tcx>:
688
688
}
689
689
690
690
p ! (
691
- write( "{}" , if first { " " } else { "+ " } ) ,
691
+ write( "{}" , if first { " " } else { " + " } ) ,
692
692
print( trait_ref. print_only_trait_path( ) )
693
693
) ;
694
694
@@ -699,7 +699,7 @@ pub trait PrettyPrinter<'tcx>:
699
699
}
700
700
701
701
if is_future {
702
- p ! ( write( "{}Future" , if first { " " } else { "+ " } ) ) ;
702
+ p ! ( write( "{}Future" , if first { " " } else { " + " } ) ) ;
703
703
first = false ;
704
704
705
705
if let Some ( future_output_ty) = future_output_ty {
@@ -712,7 +712,7 @@ pub trait PrettyPrinter<'tcx>:
712
712
}
713
713
714
714
if !is_sized {
715
- p ! ( write( "{}?Sized" , if first { " " } else { "+ " } ) ) ;
715
+ p ! ( write( "{}?Sized" , if first { " " } else { " + " } ) ) ;
716
716
} else if first {
717
717
p ! ( " Sized" ) ;
718
718
}
You can’t perform that action at this time.
0 commit comments