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 @@ -136,7 +136,7 @@ Additional help:
136
136
137
137
pub fn describe_warnings ( ) {
138
138
use extra:: sort:: Sort ;
139
- printfln ! ( "
139
+ println ( "
140
140
Available lint options:
141
141
-W <foo> Warn about <foo>
142
142
-A <foo> Allow <foo>
@@ -157,7 +157,7 @@ Available lint options:
157
157
fn padded ( max : uint , s : & str ) -> ~str {
158
158
str:: from_bytes ( vec:: from_elem ( max - s. len ( ) , ' ' as u8 ) ) + s
159
159
}
160
- printfln ! ( "\n Available lint checks:\n " ) ;
160
+ println ( "\n Available lint checks:\n " ) ;
161
161
printfln ! ( " %s %7.7s %s" ,
162
162
padded( max_key, "name" ) , "default" , "meaning" ) ;
163
163
printfln ! ( " %s %7.7s %s\n " ,
@@ -173,7 +173,7 @@ Available lint options:
173
173
}
174
174
175
175
pub fn describe_debug_flags ( ) {
176
- printfln ! ( "\n Available debug options:\n " ) ;
176
+ println ( "\n Available debug options:\n " ) ;
177
177
let r = session:: debugging_opts_map ( ) ;
178
178
for tuple in r. iter ( ) {
179
179
match * tuple {
You can’t perform that action at this time.
0 commit comments