about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbinarycat <binarycat@envs.net>2025-08-08 15:17:25 -0500
committerbinarycat <binarycat@envs.net>2025-08-16 13:36:29 -0500
commitd73e6b46e7a9af6488b13a016515403ee44a3e08 (patch)
treec86e08dc06585ccc8f2feb07272435fc7eef0785
parent6a51eef11b0d43bc7a0f0e20142649fe2783d9f3 (diff)
downloadrust-d73e6b46e7a9af6488b13a016515403ee44a3e08.tar.gz
rust-d73e6b46e7a9af6488b13a016515403ee44a3e08.zip
tidy: add better error reporting for if typos can't be run
-rw-r--r--src/tools/tidy/src/extra_checks/mod.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/tools/tidy/src/extra_checks/mod.rs b/src/tools/tidy/src/extra_checks/mod.rs
index d44fc3999f7..31169ec5967 100644
--- a/src/tools/tidy/src/extra_checks/mod.rs
+++ b/src/tools/tidy/src/extra_checks/mod.rs
@@ -587,7 +587,6 @@ fn spellcheck_runner(
 ) -> Result<(), Error> {
     let bin_path =
         crate::ensure_version_or_cargo_install(outdir, cargo, "typos-cli", "typos", "1.34.0")?;
-
     match Command::new(bin_path).current_dir(src_root).args(args).status() {
         Ok(status) => {
             if status.success() {