summaryrefslogtreecommitdiffstatshomepage
path: root/nvim
diff options
context:
space:
mode:
authorToby Vincent <tobyv13@gmail.com>2023-05-26 13:13:43 -0500
committerToby Vincent <tobyv13@gmail.com>2023-05-26 13:13:43 -0500
commitaec2c202b266483e33d6bd8ad33bed0deff944cb (patch)
treead461e5b088d7185ffec48f145e4442bb3555ef9 /nvim
parentd0acc60404d456fb2a67d0083adc97e51e69e24a (diff)
style(nvim): fix typo in comment
Diffstat (limited to 'nvim')
-rw-r--r--nvim/.config/nvim/lua/plugins/rust-tools.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/nvim/.config/nvim/lua/plugins/rust-tools.lua b/nvim/.config/nvim/lua/plugins/rust-tools.lua
index bc7d1d0..3ddd6fa 100644
--- a/nvim/.config/nvim/lua/plugins/rust-tools.lua
+++ b/nvim/.config/nvim/lua/plugins/rust-tools.lua
@@ -45,7 +45,7 @@ local function set_target()
-- TODO: Figure out how to do this without defer, or maybe even reloading.
-- The workspace seems to need to be reloaded after the notification due to the
-- [inactive-code] diagnostic, but the request being processed before the
- -- notification is completed, so I can only get it to work by defering. This is
+ -- notification is completed, so I can only get it to work by deferring. This is
-- technically still a race condition?
vim.defer_fn(function()
client.request("rust-analyzer/reloadWorkspace", nil, function(err)