Skip to content

Commit

Permalink
fix(metagen): _, line in ipairs
Browse files Browse the repository at this point in the history
  • Loading branch information
benlubas committed Jul 16, 2024
1 parent 97e13b7 commit 79bf3dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/neorg/modules/core/esupports/metagen/module.lua
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ module.public = {
.. data[1]
.. delimiter
.. tostring(type(data[2]) == "function" and data[2]() or data[2])
for line in ipairs(vim.split(lines, "\n")) do
for _, line in ipairs(vim.split(lines, "\n")) do
table.insert(result, line)
end
end
Expand Down

0 comments on commit 79bf3dd

Please sign in to comment.