aboutsummaryrefslogtreecommitdiff
path: root/mingling_core/src/asset/comp/suggest.rs
diff options
context:
space:
mode:
Diffstat (limited to 'mingling_core/src/asset/comp/suggest.rs')
-rw-r--r--mingling_core/src/asset/comp/suggest.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mingling_core/src/asset/comp/suggest.rs b/mingling_core/src/asset/comp/suggest.rs
index 55a874f..81000d5 100644
--- a/mingling_core/src/asset/comp/suggest.rs
+++ b/mingling_core/src/asset/comp/suggest.rs
@@ -80,7 +80,7 @@ impl PartialOrd for SuggestItem {
impl Ord for SuggestItem {
fn cmp(&self, other: &Self) -> std::cmp::Ordering {
- self.suggest().cmp(&other.suggest())
+ self.suggest().cmp(other.suggest())
}
}