From eab1f6d5f5fd502f78754517e7c69267fcc4031c Mon Sep 17 00:00:00 2001 From: gabime Date: Mon, 25 Nov 2024 09:52:31 +0200 Subject: [PATCH] Fix #3194 month name --- src/pattern_formatter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pattern_formatter.cpp b/src/pattern_formatter.cpp index f268e88a..1d3dbd9f 100644 --- a/src/pattern_formatter.cpp +++ b/src/pattern_formatter.cpp @@ -162,7 +162,7 @@ public: // Abbreviated month static const std::array months{ - {"Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sept", "Oct", "Nov", "Dec"}}; + {"Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"}}; template class b_formatter final : public flag_formatter {