Skip to content

Commit

Permalink
refactor(concealer): tostring
Browse files Browse the repository at this point in the history
  • Loading branch information
champignoom committed Nov 22, 2023
1 parent df0a6f9 commit 2b59c23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/neorg/modules/core/concealer/module.lua
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ local function tostring_roman_lowercase(n)
end

local ordered_icon_table = {
["0"] = function(i) return tostring(i) - 1 end,
["0"] = function(i) return tostring(i-1) end,
["1"] = function(i) return tostring(i) end,
["a"] = function(i) return tostring_lowercase(i) end,
["A"] = function(i) return tostring_lowercase(i):upper() end,
Expand Down

0 comments on commit 2b59c23

Please sign in to comment.