We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In timex/lib/format/datetime/formatters/strftime.ex, this section:
%m
%b
%h
should instead state:
This is minor but we do refer our customers to the strftime hex documentation published at https://hexdocs.pm/timex/Timex.Format.DateTime.Formatters.Strftime.html, and %m is padded by default.
{2012,8,1} |> Timex.format!("%m", :strftime) "08"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In timex/lib/format/datetime/formatters/strftime.ex, this section:
Months
%m
- month number (1..12)%b
- abbreviated month name (Jan..Dec, no padding)%h
- same is%b
should instead state:
%m
- month number (01..12)and (typo)
%h
- same as%b
This is minor but we do refer our customers to the strftime hex documentation published at https://hexdocs.pm/timex/Timex.Format.DateTime.Formatters.Strftime.html, and %m is padded by default.
{2012,8,1} |> Timex.format!("%m", :strftime)
"08"
The text was updated successfully, but these errors were encountered: