fix british dates
All checks were successful
Trigger quay.io Webhook / run (push) Successful in 5s

This commit is contained in:
Dominic 2024-05-26 16:15:36 +02:00
parent 4aefb5a647
commit 52c89dc95a
Signed by: msrd0
GPG key ID: DCC8C247452E98F9

View file

@ -91,7 +91,7 @@ pub const BRITISH: Language<'static> = Language {
3 | 23 => "rd", 3 | 23 => "rd",
_ => "th" _ => "th"
}; };
format!("{:02}{th} {month} {:04}", d.day, d.year) format!("{}{th} {month} {:04}", d.day, d.year)
}, },
lecture_from: "Lecture from", lecture_from: "Lecture from",