diff --git a/src/message.rs b/src/message.rs index de9b51b775..3ac07c842e 100644 --- a/src/message.rs +++ b/src/message.rs @@ -20,7 +20,7 @@ impl Ord for Message { (&self.filename, self.location.row(), self.location.column()).cmp(&( &other.filename, other.location.row(), - self.location.column(), + other.location.column(), )) } }