diff options
Diffstat (limited to 'src/tq.rs')
-rw-r--r-- | src/tq.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -176,6 +176,6 @@ where Mono: Monotonic, { fn partial_cmp(&self, other: &Self) -> Option<Ordering> { - Some(self.cmp(&other)) + Some(self.cmp(other)) } } |