mirror of
https://github.com/neovim/neovim.git
synced 2025-10-26 12:27:24 +00:00
*: Fix linter errors
This commit is contained in:
@@ -522,7 +522,7 @@ local function fixtbl(tbl)
|
||||
end
|
||||
|
||||
local function fixtbl_rec(tbl)
|
||||
for k, v in pairs(tbl) do
|
||||
for _, v in pairs(tbl) do
|
||||
if type(v) == 'table' then
|
||||
fixtbl_rec(v)
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user