From 3fa0282bd5a5e26a5b11c24f6c974e0fd2482154 Mon Sep 17 00:00:00 2001 From: Meghan Denny Date: Sun, 24 Oct 2021 04:27:44 -0700 Subject: [PATCH] add T and W as ignored characters for the format string --- time.zig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/time.zig b/time.zig index debbcd03d1d74b42c046608e036ff4d734cb831e..e85e002d1b9f933b5518b27315c2b31edfef287a 100644 --- a/time.zig +++ b/time.zig @@ -264,6 +264,8 @@ pub const DateTime = struct { ':', '-', '.', + 'T', + 'W', => { try writer.writeAll(&.{c}); s = i + 1; -- 2.54.0