mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
toml: comply with BurntSushi @eb989e5 (#12616)
This commit is contained in:
@@ -252,7 +252,7 @@ fn (d Decoder) decode_date_time(mut dt ast.DateTime) ? {
|
||||
if ms.len > 1 {
|
||||
return
|
||||
}
|
||||
ms = ms + '0'.repeat(6 - ms.len) + z
|
||||
ms = ms + '0'.repeat(4 - ms.len) + z
|
||||
dt.text = yymmddhhmmss + '.' + ms + offset
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user