File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
compiler/rustc_middle/src/ty/print Expand file tree Collapse file tree 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>:
688688 }
689689
690690 p ! (
691- write( "{}" , if first { " " } else { "+ " } ) ,
691+ write( "{}" , if first { " " } else { " + " } ) ,
692692 print( trait_ref. print_only_trait_path( ) )
693693 ) ;
694694
@@ -699,7 +699,7 @@ pub trait PrettyPrinter<'tcx>:
699699 }
700700
701701 if is_future {
702- p ! ( write( "{}Future" , if first { " " } else { "+ " } ) ) ;
702+ p ! ( write( "{}Future" , if first { " " } else { " + " } ) ) ;
703703 first = false ;
704704
705705 if let Some ( future_output_ty) = future_output_ty {
@@ -712,7 +712,7 @@ pub trait PrettyPrinter<'tcx>:
712712 }
713713
714714 if !is_sized {
715- p ! ( write( "{}?Sized" , if first { " " } else { "+ " } ) ) ;
715+ p ! ( write( "{}?Sized" , if first { " " } else { " + " } ) ) ;
716716 } else if first {
717717 p ! ( " Sized" ) ;
718718 }
You can’t perform that action at this time.
0 commit comments