From b48538d7dbb38aaa10e33604d397b0a1ff112814 Mon Sep 17 00:00:00 2001 From: harupy Date: Sun, 11 Sep 2022 14:23:08 +0900 Subject: [PATCH] Fix Message.cmp --- src/message.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(), )) } }