From 313684edacabde3db6be68f6d773485900a4950c Mon Sep 17 00:00:00 2001 From: Bas Zalmstra Date: Tue, 22 Aug 2023 22:42:15 +0200 Subject: [PATCH] fix: typo in solver error message (#284) fix: typo in error message --- crates/rattler_libsolv_rs/src/problem.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/rattler_libsolv_rs/src/problem.rs b/crates/rattler_libsolv_rs/src/problem.rs index d8c1f89cb..b5b7d56ae 100644 --- a/crates/rattler_libsolv_rs/src/problem.rs +++ b/crates/rattler_libsolv_rs/src/problem.rs @@ -561,9 +561,9 @@ impl<'a> DisplayUnsat<'a> { if missing { // No candidates for requirement if depth == 0 { - writeln!(f, "{indent}No candidates where found for {req}.")?; + writeln!(f, "{indent}No candidates were found for {req}.")?; } else { - writeln!(f, "{indent}{req}, for which no candidates where found.",)?; + writeln!(f, "{indent}{req}, for which no candidates were found.",)?; } } else if installable { // Package can be installed (only mentioned for top-level requirements)