Skip to content

Commit

Permalink
fix: "result" typo in monthname() last else statement
Browse files Browse the repository at this point in the history
  • Loading branch information
jskherman committed Jun 3, 2024
1 parent b4ee62a commit 8c97626
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils.typ
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
else if n == 10 { month = "October" }
else if n == 11 { month = "November" }
else if n == 12 { month = "December" }
else { result = none }
else { month = none }
if month != none {
if display == "short" {
month = month.slice(0, 3)
Expand Down

0 comments on commit 8c97626

Please sign in to comment.