Fix #3194 - Use Sep instead of Sept for abbreviated month

This commit is contained in:
Gabi Melman
2024-09-20 13:10:23 +03:00
committed by GitHub
parent bdd1dff378
commit 2c76e6101a

View File

@@ -180,7 +180,7 @@ public:
// Abbreviated month // Abbreviated month
static const std::array<const char *, 12> months{ static const std::array<const char *, 12> 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 <typename ScopedPadder> template <typename ScopedPadder>
class b_formatter final : public flag_formatter { class b_formatter final : public flag_formatter {