diff options
author | Blaž Hrastnik | 2021-05-06 08:20:00 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-05-06 08:20:00 +0000 |
commit | fd4fd12fa3dd565b56edb395bd625b0d2ec8ad46 (patch) | |
tree | 6c6ecf7777cb9eb7d9943122073a8a8e950abcbb /helix-lsp/src/client.rs | |
parent | ba970054957238cb682ae3be022b675131beb6f8 (diff) |
clippy lint
Diffstat (limited to 'helix-lsp/src/client.rs')
-rw-r--r-- | helix-lsp/src/client.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-lsp/src/client.rs b/helix-lsp/src/client.rs index 8de4b95a..8a3aabd9 100644 --- a/helix-lsp/src/client.rs +++ b/helix-lsp/src/client.rs @@ -61,7 +61,7 @@ impl Client { let (incoming, outgoing) = Transport::start(reader, writer, stderr); - let client = Client { + let client = Self { _process: process, outgoing, |