Chore: Clippy fixes for new lints

This commit is contained in:
Kyle Simpson
2021-06-14 23:27:57 +01:00
parent d6d6acabe1
commit be3030932e
5 changed files with 6 additions and 6 deletions

View File

@@ -66,7 +66,7 @@ impl Ord for EventData {
.as_ref()
.expect("T2 known to be well-defined by above.");
t1.cmp(&t2)
t1.cmp(t2)
} else {
Ordering::Equal
}