File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
trunk/src/librustc/driver Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 1
1
---
2
- refs/heads/master: a0ee7c9f55b90a541db1f6f36d18562bdf5ef6bf
2
+ refs/heads/master: 2a7be1b209a4ceea42418f55baf68774571ed9a2
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
4
refs/heads/snap-stage3: d44ea720fa9dfe062ef06d0eb49a58d4e7e92344
5
5
refs/heads/try: 6ecdf1fa83d7cdbf44a0091132e9c6580be72275
Original file line number Diff line number Diff line change @@ -255,7 +255,8 @@ Available lint options:
255
255
for ( name, to) in lints. into_iter ( ) {
256
256
let name = name. chars ( ) . map ( |x| x. to_lowercase ( ) )
257
257
. collect :: < String > ( ) . replace ( "_" , "-" ) ;
258
- let desc = to. into_iter ( ) . map ( |x| x. as_str ( ) ) . collect :: < Vec < String > > ( ) . connect ( ", " ) ;
258
+ let desc = to. into_iter ( ) . map ( |x| x. as_str ( ) . replace ( "_" , "-" ) )
259
+ . collect :: < Vec < String > > ( ) . connect ( ", " ) ;
259
260
println ! ( " {} {}" ,
260
261
padded( name. as_slice( ) ) , desc) ;
261
262
}
You can’t perform that action at this time.
0 commit comments