diff options
author | Blaž Hrastnik | 2021-05-09 08:13:59 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-05-09 08:13:59 +0000 |
commit | 6c705f09e88a4b63c4ed854bc9e956b0539ca8af (patch) | |
tree | f625eb633273c277cff7c0f0328df4edc1b1d834 /helix-core/src | |
parent | dbe870e4eca6012455d3601d283425043f59e2e7 (diff) |
Lint
Diffstat (limited to 'helix-core/src')
-rw-r--r-- | helix-core/src/selection.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/helix-core/src/selection.rs b/helix-core/src/selection.rs index dfd95bdd..67a20934 100644 --- a/helix-core/src/selection.rs +++ b/helix-core/src/selection.rs @@ -210,7 +210,7 @@ impl Selection { Self::single(pos, pos) } - fn normalize(mut ranges: SmallVec<[Range; 1]>, mut primary_index: usize) -> Selection { + fn normalize(mut ranges: SmallVec<[Range; 1]>, mut primary_index: usize) -> Self { let primary = ranges[primary_index]; ranges.sort_unstable_by_key(Range::from); primary_index = ranges.iter().position(|&range| range == primary).unwrap(); @@ -249,7 +249,7 @@ impl Selection { result.push(range) } - Selection { + Self { ranges: result, primary_index, } |