Skip to content

Commit

Permalink
fix: typo in solver error message (#284)
Browse files Browse the repository at this point in the history
fix: typo in error message
  • Loading branch information
baszalmstra authored Aug 22, 2023
1 parent 1f8edca commit 313684e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/rattler_libsolv_rs/src/problem.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 313684e

Please sign in to comment.