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 @@ -129,10 +129,10 @@ impl<'a> fmt::Show for WhereClause<'a> {
129
129
try!( f. write ( ", " . as_bytes ( ) ) ) ;
130
130
}
131
131
match pred {
132
- & clean:: WherePredicate :: BoundPredicate { ref ty, ref bounds } => {
132
+ & clean:: WherePredicate :: BoundPredicate { ref ty, ref bounds } => {
133
133
let bounds = bounds. as_slice ( ) ;
134
134
try!( write ! ( f, "{}: {}" , ty, TyParamBounds ( bounds) ) ) ;
135
- } ,
135
+ }
136
136
& clean:: WherePredicate :: RegionPredicate { ref lifetime,
137
137
ref bounds } => {
138
138
try!( write ! ( f, "{}: " , lifetime) ) ;
@@ -143,7 +143,7 @@ impl<'a> fmt::Show for WhereClause<'a> {
143
143
144
144
try!( write ! ( f, "{}" , lifetime) ) ;
145
145
}
146
- } ,
146
+ }
147
147
& clean:: WherePredicate :: EqPredicate => {
148
148
unimplemented ! ( )
149
149
}
You can’t perform that action at this time.
0 commit comments