From 8e5c57f050aad35e2c5653597a40c3e0ac762465 Mon Sep 17 00:00:00 2001 From: Cadu Date: Sun, 3 Apr 2022 14:06:36 -0300 Subject: [PATCH] wordsmithing. --- crates/flycheck/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/flycheck/src/lib.rs b/crates/flycheck/src/lib.rs index 7b643b992c..1168f11f96 100644 --- a/crates/flycheck/src/lib.rs +++ b/crates/flycheck/src/lib.rs @@ -329,7 +329,7 @@ impl CargoActor { Ok(output) if output.status.success() => Ok(()), Ok(output) => { Err(io::Error::new(io::ErrorKind::Other, format!( - "Cargo watcher failed, the command produced no valid metadata (exit code: {:?})\nMake sure to have `cargo clippy` installed.", + "Cargo watcher failed, the command produced no valid metadata (exit code: {:?})\nMake sure you have `cargo clippy` installed and updated.", output.status ))) }