Fix bug converting ranges to the wrong region

This commit is contained in:
snobee 2024-12-09 17:23:53 -08:00
parent 40a008657a
commit 6e39425938
No known key found for this signature in database
GPG key ID: 77D517A21B16CC87

View file

@ -42,7 +42,7 @@ impl ToRegion for Range {
},
end: LineColumn {
line: self.end.line,
column: self.end.line,
column: self.end.character,
},
};