Skip to content

Commit

Permalink
chore: fix clippy (#202)
Browse files Browse the repository at this point in the history
  • Loading branch information
Zeeshan Lakhani committed Jul 18, 2023
1 parent 0c2413c commit 0763637
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion homestar-core/src/ipld/link.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ impl<T> Eq for Link<T> {}

impl<T> PartialOrd for Link<T> {
fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
Some(self.cid.cmp(other.cid()))
Some(self.cmp(other))
}
}

Expand Down

0 comments on commit 0763637

Please sign in to comment.