| ... | @@ -196,7 +196,7 @@ pub const DateTime = struct { | ... | @@ -196,7 +196,7 @@ pub const DateTime = struct { |
| 196 | .HH => try writer.print("{:0>2}", .{self.hours}), | 196 | .HH => try writer.print("{:0>2}", .{self.hours}), |
| 197 | .mm => try writer.print("{:0>2}", .{self.minutes}), | 197 | .mm => try writer.print("{:0>2}", .{self.minutes}), |
| 198 | .ss => try writer.print("{:0>2}", .{self.seconds}), | 198 | .ss => try writer.print("{:0>2}", .{self.seconds}), |
| 199 | .MM => try writer.print("{:0>2}", .{self.months}), | 199 | .MM => try writer.print("{:0>2}", .{self.months + 1}), |
| 200 | .z => try writer.writeAll(@tagName(self.timezone)), | 200 | .z => try writer.writeAll(@tagName(self.timezone)), |
| 201 | | 201 | |
| 202 | .MMM => { | 202 | .MMM => { |