Skip to content

Commit 12755aa

Browse files
authored
Rollup merge of #152610 - Shunpoco:fix-js-lint-bless-message, r=clubby789
Exchange js_lint message between bless and non-bless The message `applying suggestions` should be emitted when bless is enabled.
2 parents 5d2a033 + 98975ff commit 12755aa

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • src/tools/tidy/src/extra_checks

src/tools/tidy/src/extra_checks/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -334,9 +334,9 @@ fn check_impl(
334334

335335
if js_lint {
336336
if bless {
337-
eprintln!("linting javascript files");
338-
} else {
339337
eprintln!("linting javascript files and applying suggestions");
338+
} else {
339+
eprintln!("linting javascript files");
340340
}
341341
let res = rustdoc_js::lint(outdir, librustdoc_path, tools_path, bless);
342342
if res.is_err() {

0 commit comments

Comments
 (0)