diff options
| author | CPea <[email protected]> | 2023-04-11 06:53:20 +0700 | 
|---|---|---|
| committer | CPea <[email protected]> | 2023-04-24 19:11:09 +0700 | 
| commit | 020ee008a8d7c9258f406ef381e0cd38518fbd2b (patch) | |
| tree | 38c93f3fa5bd053a3068c52a7208dd2d08f15c39 | |
| parent | 49e82310f72f6b0c62fa506761a005876f615b2e (diff) | |
fix: wrong deprecation message
| -rw-r--r-- | lua/lvim/config/_deprecated.lua | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/lua/lvim/config/_deprecated.lua b/lua/lvim/config/_deprecated.lua index d4723774..d71d1c94 100644 --- a/lua/lvim/config/_deprecated.lua +++ b/lua/lvim/config/_deprecated.lua @@ -57,7 +57,7 @@ function M.handle()    lvim.lsp.float = {}    setmetatable(lvim.lsp.float, {      __newindex = function(_, k, _) -      deprecate("lvim.lsp.float." .. k, "Use `lvim.lsp.handlers.override_config instead.") +      deprecate("lvim.lsp.float." .. k, "Use `lvim.lsp.handlers` instead.")      end,    }) @@ -65,7 +65,7 @@ function M.handle()    lvim.lsp.diagnostics = {}    setmetatable(lvim.lsp.diagnostics, {      __newindex = function(_, k, _) -      deprecate("lvim.lsp.diagnostics." .. k, "Use `vim.diagnostic.config() instead.") +      deprecate("lvim.lsp.diagnostics." .. k, "Use `vim.diagnostic.config()` instead.")      end,    }) | 
