File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
branches/snap-stage3/src/librustdoc/html Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
---
2
2
refs/heads/master: 18842f89f084c52588fe7cffe07f87bf6e90796a
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
- refs/heads/snap-stage3: 6948a2df318d1bc2d668d8b29a653f15db1653d8
4
+ refs/heads/snap-stage3: 177529267dd12e698435f84557e27307034e211d
5
5
refs/heads/try: f5d619caf9f32458680fae55526b99582ca682dd
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
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