Skip to content

Commit 80d8b0f

Browse files
committed
refactor: Add missing month constants September and October
1 parent f6a2999 commit 80d8b0f

File tree

1 file changed

+12
-10
lines changed

1 file changed

+12
-10
lines changed

constants.go

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -77,16 +77,18 @@ const (
7777
// month constants
7878
// 月份常量
7979
const (
80-
January = time.January // 一月
81-
February = time.February // 二月
82-
March = time.March // 三月
83-
April = time.April // 四月
84-
May = time.May // 五月
85-
June = time.June // 六月
86-
July = time.July // 七月
87-
August = time.August // 八月
88-
October = time.October // 十月
89-
December = time.December // 十二月
80+
January = time.January // 一月
81+
February = time.February // 二月
82+
March = time.March // 三月
83+
April = time.April // 四月
84+
May = time.May // 五月
85+
June = time.June // 六月
86+
July = time.July // 七月
87+
August = time.August // 八月
88+
September = time.September // 九月
89+
October = time.October // 十月
90+
November = time.November // 十一月
91+
December = time.December // 十二月
9092
)
9193

9294
// constellation constants

0 commit comments

Comments
 (0)