File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
branches/snap-stage3/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
2
refs/heads/master: 065caf34f5ff29e04605f95d9c5d511af219439a
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
- refs/heads/snap-stage3: a0ee7c9f55b90a541db1f6f36d18562bdf5ef6bf
4
+ refs/heads/snap-stage3: 2a7be1b209a4ceea42418f55baf68774571ed9a2
5
5
refs/heads/try: 0ee4d8b0b112c608646fa75463ab4dc59132efd9
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
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