diff options
| author | Stuart Cook <Zalathar@users.noreply.github.com> | 2024-10-20 14:06:03 +1100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-20 14:06:03 +1100 |
| commit | 28a5ef91756a6d1c3aa59751ef6d2a63291925ec (patch) | |
| tree | 78c0b65b3990818eb035ab8fc1ae527c0ad203c7 | |
| parent | 0bfc49b05396689ab42821dc298c5c50263920f4 (diff) | |
| parent | 53974b178699468ec82452db691d646265765fab (diff) | |
| download | rust-28a5ef91756a6d1c3aa59751ef6d2a63291925ec.tar.gz rust-28a5ef91756a6d1c3aa59751ef6d2a63291925ec.zip | |
Rollup merge of #131941 - lolbinarycat:compiletest-need-html-tidy, r=clubby789
compiletest: disambiguate html-tidy from rust tidy tool when i first saw this error message i was very confused, i thought it was talking about `src/tools/tidy`. now it should be much more clear what tool should be installed.
| -rw-r--r-- | src/tools/compiletest/src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/compiletest/src/main.rs b/src/tools/compiletest/src/main.rs index b0f87593f95..b84dd956de0 100644 --- a/src/tools/compiletest/src/main.rs +++ b/src/tools/compiletest/src/main.rs @@ -19,7 +19,7 @@ fn main() { let config = Arc::new(parse_config(env::args().collect())); if !config.has_tidy && config.mode == Mode::Rustdoc { - eprintln!("warning: `tidy` is not installed; diffs will not be generated"); + eprintln!("warning: `tidy` (html-tidy.org) is not installed; diffs will not be generated"); } if !config.profiler_runtime && config.mode == Mode::CoverageRun { |
