hare

The Hare programming language
git clone https://git.torresjrjr.com/hare.git
Log | Files | Refs | README | LICENSE

commit 241abef48b6546c80842806fd9a7a1becf167249
parent c7450624ca64ee8db35f39525b549db344b61623
Author: Byron Torres <b@torresjrjr.com>
Date:   Fri,  4 Feb 2022 11:42:51 +0000

fix "Fri" formatting

Signed-off-by: Byron Torres <b@torresjrjr.com>

Diffstat:
Mdatetime/format.ha | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/datetime/format.ha b/datetime/format.ha @@ -24,7 +24,7 @@ def WEEKDAYS: [_]str = [ "Sunday", ]; -def WEEKDAYS_SHORT: [_]str = ["Mon", "Tue", "Wed", "Thu", "Fr", "Sat", "Sun"]; +def WEEKDAYS_SHORT: [_]str = ["Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"]; def MONTHS: [_]str = [ "January",