Fix Message.cmp

This commit is contained in:
harupy 2022-09-11 14:23:08 +09:00
parent 8698c06c36
commit b48538d7db
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ impl Ord for Message {
(&self.filename, self.location.row(), self.location.column()).cmp(&( (&self.filename, self.location.row(), self.location.column()).cmp(&(
&other.filename, &other.filename,
other.location.row(), other.location.row(),
self.location.column(), other.location.column(),
)) ))
} }
} }