Skip to content

Commit

Permalink
docs: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
dundargoc committed Jan 22, 2025
1 parent 0e234f4 commit cedf795
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lua/lspconfig/configs/texlab.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

Expand Down

0 comments on commit cedf795

Please sign in to comment.