From c59f22a427a7069f2edc172874b0e05f04de5dc0 Mon Sep 17 00:00:00 2001 From: theo court <110127860+thcrt@users.noreply.github.com> Date: Mon, 7 Aug 2023 15:36:48 +0200 Subject: [PATCH] Fix typo --- crates/pacdef_core/src/backend/actual/rust.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/pacdef_core/src/backend/actual/rust.rs b/crates/pacdef_core/src/backend/actual/rust.rs index a914520..b168008 100644 --- a/crates/pacdef_core/src/backend/actual/rust.rs +++ b/crates/pacdef_core/src/backend/actual/rust.rs @@ -37,7 +37,7 @@ impl Backend for Rust { Ok(string) => string, Err(err) if err.kind() == NotFound => { eprintln!( - "WARNING: no crates file foud for cargo. Assuming no crates installed yet." + "WARNING: no crates file found for cargo. Assuming no crates installed yet." ); return Ok(HashSet::new()); }