We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cfe6103 commit 612b440Copy full SHA for 612b440
crates/language/src/proto.rs
@@ -280,7 +280,7 @@ pub fn deserialize_selection_set(set: proto::SelectionSet) -> SelectionSet {
280
.into_iter()
281
.map(|selection| {
282
let range = (FullOffset(selection.start as usize), Bias::Left)
283
- ..(FullOffset(selection.end as usize), Bias::Right);
+ ..(FullOffset(selection.end as usize), Bias::Left);
284
let state = SelectionState {
285
id: selection.id as usize,
286
reversed: selection.reversed,
0 commit comments