diff options
author | Blaž Hrastnik | 2021-06-27 04:27:35 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-06-27 04:27:47 +0000 |
commit | cad14c6b46413b23d3afee7c979eeb0dbd4fb84c (patch) | |
tree | bb50d665f233f2eb7589ad75f65c6266b42eb87d /helix-lsp | |
parent | ed1a745442a88804fd193a8a5d946377516cf39d (diff) |
Address nightly clippy warnings
Diffstat (limited to 'helix-lsp')
-rw-r--r-- | helix-lsp/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-lsp/src/lib.rs b/helix-lsp/src/lib.rs index b25a7aca..e4ab153c 100644 --- a/helix-lsp/src/lib.rs +++ b/helix-lsp/src/lib.rs @@ -326,7 +326,7 @@ impl ProgressStatus { pub fn progress(&self) -> Option<&lsp::WorkDoneProgress> { match &self { ProgressStatus::Created => None, - ProgressStatus::Started(progress) => Some(&progress), + ProgressStatus::Started(progress) => Some(progress), } } } |