diff options
Diffstat (limited to 'runtime/lua/vim')
-rw-r--r-- | runtime/lua/vim/lsp/buf.lua | 2 |
1 files changed, 1 insertions, 1 deletions
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 |