mirror of
https://github.com/Ascyii/telekasten.nvim.git
synced 2026-01-01 06:14:23 -05:00
Fixed day suffix - there's no 33rd, but there is a 23rd
This commit is contained in:
@@ -218,7 +218,7 @@ local function daysuffix(day)
|
|||||||
if (day == "2") or (day == "22") then
|
if (day == "2") or (day == "22") then
|
||||||
return "nd"
|
return "nd"
|
||||||
end
|
end
|
||||||
if (day == "3") or (day == "33") then
|
if (day == "3") or (day == "23") then
|
||||||
return "rd"
|
return "rd"
|
||||||
end
|
end
|
||||||
return "th"
|
return "th"
|
||||||
|
|||||||
Reference in New Issue
Block a user