diff --git a/lua/lazyvim/plugins/extras/lang/clojure.lua b/lua/lazyvim/plugins/extras/lang/clojure.lua index 3d12dd1b..c3f0bd5b 100644 --- a/lua/lazyvim/plugins/extras/lang/clojure.lua +++ b/lua/lazyvim/plugins/extras/lang/clojure.lua @@ -78,13 +78,13 @@ return { { "n", "x" }, "[c", "call search('^; -\\+$', 'bw')", - { silent = true, buffer = true, desc = "Jumps to the begining of previous evaluation output." } + { silent = true, buffer = true, desc = "Jumps to the beginning of previous evaluation output." } ) vim.keymap.set( { "n", "x" }, "]c", "call search('^; -\\+$', 'w')", - { silent = true, buffer = true, desc = "Jumps to the begining of next evaluation output." } + { silent = true, buffer = true, desc = "Jumps to the beginning of next evaluation output." } ) end, })