1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

time: add missing custom_format token (#18880)

This commit is contained in:
Turiiya
2023-07-17 09:40:27 +02:00
committed by GitHub
parent c2dc1ca706
commit 63867d4ce0
2 changed files with 3 additions and 3 deletions

View File

@@ -85,8 +85,8 @@ fn ordinal_suffix(n int) string {
}
const (
tokens_2 = ['MM', 'DD', 'Do', 'YY', 'ss', 'kk', 'NN', 'mm', 'hh', 'HH', 'ZZ', 'dd', 'Qo', 'QQ',
'wo', 'ww']
tokens_2 = ['MM', 'Mo', 'DD', 'Do', 'YY', 'ss', 'kk', 'NN', 'mm', 'hh', 'HH', 'ZZ', 'dd', 'Qo',
'QQ', 'wo', 'ww']
tokens_3 = ['MMM', 'DDD', 'ZZZ', 'ddd']
tokens_4 = ['MMMM', 'DDDD', 'DDDo', 'dddd', 'YYYY']
)