File tree Expand file tree Collapse file tree 3 files changed +27
-1
lines changed Expand file tree Collapse file tree 3 files changed +27
-1
lines changed Original file line number Diff line number Diff line change @@ -931,7 +931,7 @@ fn join_bounds_inner(
931
931
_ => false ,
932
932
} ;
933
933
934
- let shape = if i > 0 && need_indent && force_newline {
934
+ let shape = if need_indent && force_newline {
935
935
shape
936
936
. block_indent ( context. config . tab_spaces ( ) )
937
937
. with_max_width ( context. config )
Original file line number Diff line number Diff line change
1
+ pub trait PrettyPrinter < ' tcx > :
2
+ Printer <
3
+ ' tcx ,
4
+ Error = fmt:: Error ,
5
+ Path = Self ,
6
+ Region = Self ,
7
+ Type = Self ,
8
+ DynExistential = Self ,
9
+ Const = Self ,
10
+ > + fmt:: Write
11
+ {
12
+ //
13
+ }
Original file line number Diff line number Diff line change
1
+ pub trait PrettyPrinter < ' tcx > :
2
+ Printer <
3
+ ' tcx ,
4
+ Error = fmt:: Error ,
5
+ Path = Self ,
6
+ Region = Self ,
7
+ Type = Self ,
8
+ DynExistential = Self ,
9
+ Const = Self ,
10
+ > + fmt:: Write
11
+ {
12
+ //
13
+ }
You can’t perform that action at this time.
0 commit comments