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