chore: clippy

This commit is contained in:
Valentin Tolmer 2023-12-15 23:28:50 +01:00 committed by nitnelave
parent 272c84c574
commit 2c54ad895d
1 changed files with 1 additions and 1 deletions

View File

@ -261,7 +261,7 @@ macro_rules! make_case_insensitive_comparable_string {
impl PartialOrd for $c {
fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
Some(compare_str_case_insensitive(&self.0, &other.0))
Some(self.cmp(other))
}
}