Skip to content

Commit

Permalink
fix(checkhealth): add missing parameter to string.format (nvim-neorg#…
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanbrews authored and Furkan Sahin committed May 15, 2024
1 parent d4cf611 commit f9ccb3b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lua/neorg/health.lua
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ return {
elseif not modules[key] then
vim.health.warn(
string.format(
"You are attempting to load a module `%s` which is not recognized by Neorg at this time. You may receive an error upon launching Neorg."
"You are attempting to load a module `%s` which is not recognized by Neorg at this time. You may receive an error upon launching Neorg.",
key
)
)
elseif type(value) ~= "table" then
Expand Down

0 comments on commit f9ccb3b

Please sign in to comment.