Skip to content

Commit

Permalink
fix: luacheck warning
Browse files Browse the repository at this point in the history
  • Loading branch information
stevearc committed Mar 31, 2022
1 parent 23be0bd commit df0cce6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lua/aerial/backends/lsp/callbacks.lua
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ end

local function process_symbols(symbols, bufnr)
local include_kind = config.get_filter_kind_map(bufnr)
local function _process_symbols(_symbols, parent, list, level)
for _, symbol in ipairs(_symbols) do
local function _process_symbols(symbols_, parent, list, level)
for _, symbol in ipairs(symbols_) do
local kind = get_symbol_kind_name(symbol.kind)
local range
if symbol.location then -- SymbolInformation type
Expand Down

0 comments on commit df0cce6

Please sign in to comment.