Skip to content

Commit d4b63e2

Browse files
Update healthcheck loop to use ipairs instead of pairs
1 parent 6f33a30 commit d4b63e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/render-markdown/health.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ function M.check()
5656
if #errors == 0 then
5757
vim.health.ok('Configuration is valid')
5858
end
59-
for _, message in pairs(errors) do
59+
for _, message in ipairs(errors) do
6060
vim.health.error(message)
6161
end
6262
end

0 commit comments

Comments
 (0)