File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -290,10 +290,10 @@ fn check_impl(
290
290
args. extend_from_slice ( SPELLCHECK_DIRS ) ;
291
291
292
292
if bless {
293
- eprintln ! ( "spellcheck files and fix " ) ;
293
+ eprintln ! ( "spellchecking files and fixing typos " ) ;
294
294
args. push ( "--write-changes" ) ;
295
295
} else {
296
- eprintln ! ( "spellcheck files" ) ;
296
+ eprintln ! ( "spellchecking files" ) ;
297
297
}
298
298
spellcheck_runner ( root_path, & outdir, & cargo, & args) ?;
299
299
}
@@ -303,11 +303,17 @@ fn check_impl(
303
303
}
304
304
305
305
if js_lint {
306
+ if bless {
307
+ eprintln ! ( "linting javascript files" ) ;
308
+ } else {
309
+ eprintln ! ( "linting javascript files and applying suggestions" ) ;
310
+ }
306
311
rustdoc_js:: lint ( outdir, librustdoc_path, tools_path, bless) ?;
307
312
rustdoc_js:: es_check ( outdir, librustdoc_path) ?;
308
313
}
309
314
310
315
if js_typecheck {
316
+ eprintln ! ( "typechecking javascript files" ) ;
311
317
rustdoc_js:: typecheck ( outdir, librustdoc_path) ?;
312
318
}
313
319
You can’t perform that action at this time.
0 commit comments