about summary refs log tree commit diff
diff options
context:
space:
mode:
authorStuart Cook <Zalathar@users.noreply.github.com>2024-10-20 14:06:03 +1100
committerGitHub <noreply@github.com>2024-10-20 14:06:03 +1100
commit28a5ef91756a6d1c3aa59751ef6d2a63291925ec (patch)
tree78c0b65b3990818eb035ab8fc1ae527c0ad203c7
parent0bfc49b05396689ab42821dc298c5c50263920f4 (diff)
parent53974b178699468ec82452db691d646265765fab (diff)
downloadrust-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.rs2
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 {