[clippy] fixes

This commit is contained in:
2025-08-12 08:44:59 +02:00
parent 70548d2041
commit 98126a72da
3 changed files with 14 additions and 14 deletions

View File

@@ -61,7 +61,7 @@ impl Eq for Game {}
impl PartialOrd for Game {
fn partial_cmp(&self, other: &Self) -> Option<std::cmp::Ordering> {
Some(self.name.cmp(&other.name))
Some(self.cmp(other))
}
}