From 6de7f32d52822c3c09d24720efc65efe97a6e698 Mon Sep 17 00:00:00 2001 From: dundargoc <33953936+dundargoc@users.noreply.github.com> Date: Wed, 15 Jun 2022 02:49:54 +0200 Subject: docs: fix typos (#18866) docs: fix typos and similarly insignificant changes Co-authored-by: zeertzjq Co-authored-by: smjonas Co-authored-by: kanreki <32443233+kanreki@users.noreply.github.com> --- runtime/lua/vim/lsp/buf.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'runtime/lua/vim/lsp') diff --git a/runtime/lua/vim/lsp/buf.lua b/runtime/lua/vim/lsp/buf.lua index fa8ee23805..97c30bc46a 100644 --- a/runtime/lua/vim/lsp/buf.lua +++ b/runtime/lua/vim/lsp/buf.lua @@ -708,7 +708,7 @@ local function on_code_action_results(results, ctx, options) end local found = false for _, o in ipairs(options.context.only) do - -- action kinds are hierachical with . as a separator: when requesting only + -- action kinds are hierarchical with . as a separator: when requesting only -- 'quickfix' this filter allows both 'quickfix' and 'quickfix.foo', for example if a.kind:find('^' .. o .. '$') or a.kind:find('^' .. o .. '%.') then found = true -- cgit