Skip to content

Commit c56de2f

Browse files
committed
Use long names for Elixir compatibility
1 parent 32154c9 commit c56de2f

File tree

1 file changed

+18
-23
lines changed

1 file changed

+18
-23
lines changed

src/gleam/time.gleam

+18-23
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,24 @@
11
pub type Weekday {
2-
Mon
3-
Tue
4-
Wed
5-
Thu
6-
Fri
7-
Sat
8-
Sun
2+
Monday
3+
Tuesday
4+
Wednesday
5+
Thursday
6+
Friday
7+
Saturday
8+
Sunday
99
};
1010

1111
pub type Month {
12-
Jan
13-
Feb
14-
Mar
15-
Apr
12+
January
13+
February
14+
March
15+
April
1616
May
17-
Jun
18-
Jul
19-
Aug
20-
Sep
21-
Oct
22-
Nov
23-
Dec
24-
};
25-
26-
// TODO: Make opaque
27-
pub type Posix {
28-
Posix(seconds: Int)
17+
June
18+
July
19+
August
20+
September
21+
October
22+
November
23+
December
2924
};

0 commit comments

Comments
 (0)