This commit is contained in:
a2tt
2022-03-18 18:41:09 +09:00
committed by GitHub
parent fcd36c549d
commit f073e33fb9

View File

@ -1411,7 +1411,7 @@ import (
func formatAsDate(t time.Time) string {
year, month, day := t.Date()
return fmt.Sprintf("%d%02d/%02d", year, month, day)
return fmt.Sprintf("%d/%02d/%02d", year, month, day)
}
func main() {