RFC 3339, section 5.6 specifies that the `time-secfrac` field must use a period. However, [Parse permits the use of commas](https://go.dev/play/p/Yxw7tMABIkB): ```go Parse(time.RFC3339, "0000-01-01T00:00:00,0Z") ``` reports nil rather than an error.