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