From 2c76e6101a9234484679f2c5d3c288ac95560204 Mon Sep 17 00:00:00 2001 From: Gabi Melman Date: Fri, 20 Sep 2024 13:10:23 +0300 Subject: [PATCH] Fix #3194 - Use Sep instead of Sept for abbreviated month --- include/spdlog/pattern_formatter-inl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/spdlog/pattern_formatter-inl.h b/include/spdlog/pattern_formatter-inl.h index cae7ddfd..b53d8051 100644 --- a/include/spdlog/pattern_formatter-inl.h +++ b/include/spdlog/pattern_formatter-inl.h @@ -180,7 +180,7 @@ class A_formatter : public flag_formatter { // 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 {