aboutsummaryrefslogtreecommitdiffstats
path: root/lua/lspconfig/configs/texlab.lua
diff options
context:
space:
mode:
authordundargoc <gocdundar@gmail.com>2025-01-22 14:13:12 +0100
committerdundargoc <33953936+dundargoc@users.noreply.github.com>2025-01-22 14:23:26 +0100
commitcedf7952256b4f3a068f2cda6e4c425e12ed2344 (patch)
treea771c4074c55c7be34b47d14ceeff2d36d7aea6c /lua/lspconfig/configs/texlab.lua
parentrefactor: silence luals warnings (diff)
downloadnvim-lspconfig-cedf7952256b4f3a068f2cda6e4c425e12ed2344.tar
nvim-lspconfig-cedf7952256b4f3a068f2cda6e4c425e12ed2344.tar.gz
nvim-lspconfig-cedf7952256b4f3a068f2cda6e4c425e12ed2344.tar.bz2
nvim-lspconfig-cedf7952256b4f3a068f2cda6e4c425e12ed2344.tar.lz
nvim-lspconfig-cedf7952256b4f3a068f2cda6e4c425e12ed2344.tar.xz
nvim-lspconfig-cedf7952256b4f3a068f2cda6e4c425e12ed2344.tar.zst
nvim-lspconfig-cedf7952256b4f3a068f2cda6e4c425e12ed2344.zip
docs: fix typo
Diffstat (limited to 'lua/lspconfig/configs/texlab.lua')
-rw-r--r--lua/lspconfig/configs/texlab.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/lua/lspconfig/configs/texlab.lua b/lua/lspconfig/configs/texlab.lua
index 26a25575..355c5ae8 100644
--- a/lua/lspconfig/configs/texlab.lua
+++ b/lua/lspconfig/configs/texlab.lua
@@ -81,7 +81,7 @@ local function command_factory(cmd)
if err then
vim.notify(('Failed to clean %s files: %s'):format(cmd, err.message), vim.log.levels.ERROR)
else
- vim.notify(('cmmand %s execute successfully'):format(cmd), vim.log.levels.INFO)
+ vim.notify(('command %s executed successfully'):format(cmd), vim.log.levels.INFO)
end
end)
end
@@ -90,7 +90,7 @@ local function command_factory(cmd)
command = cmd_tbl[cmd],
arguments = { { uri = vim.uri_from_bufnr(bufnr) } },
}
- vim.notify(('command %s execute successfully'):format(cmd_tbl[cmd]))
+ vim.notify(('command %s executed successfully'):format(cmd_tbl[cmd]))
end
end