Skip to content

Commit 7e905b2

Browse files
committed
make tidy slightly less noisy
1 parent d1ed52b commit 7e905b2

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/tools/tidy/src/error_codes.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ fn check_removed_error_code_explanation(ci_info: &crate::CiInfo, bad: &mut bool)
9595
eprintln!("Take a look at E0001 to see how to handle it.");
9696
return;
9797
}
98-
println!("No error code explanation was removed!");
98+
// All good, no error code explanation was removed.
9999
}
100100

101101
/// Stage 1: Parses a list of error codes from `error_codes.rs`.

src/tools/tidy/src/rustdoc_json.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ pub fn check(src_path: &Path, ci_info: &crate::CiInfo, bad: &mut bool) {
1616
// First we check that `src/rustdoc-json-types` was modified.
1717
if !crate::files_modified(ci_info, |p| p == RUSTDOC_JSON_TYPES) {
1818
// `rustdoc-json-types` was not modified so nothing more to check here.
19-
println!("`rustdoc-json-types` was not modified.");
2019
return;
2120
}
2221
// Then we check that if `FORMAT_VERSION` was updated, the `Latest feature:` was also updated.

0 commit comments

Comments
 (0)