Skip to content

Commit

Permalink
Fix #3194 - Use Sep instead of Sept for abbreviated month
Browse files Browse the repository at this point in the history
  • Loading branch information
gabime authored Sep 20, 2024
1 parent bdd1dff commit 2c76e61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/spdlog/pattern_formatter-inl.h
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ class A_formatter : public flag_formatter {

// Abbreviated month
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>
class b_formatter final : public flag_formatter {
Expand Down

0 comments on commit 2c76e61

Please sign in to comment.