Skip to content

Commit

Permalink
chore: Fix month.integer
Browse files Browse the repository at this point in the history
  • Loading branch information
Youssef1313 committed Jan 5, 2025
1 parent d5403be commit 7b4a967
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -199,12 +199,12 @@ internal override void Format(StringBuilder builder, DateTimeOffset dateTime, Cu
}
else
{
builder.Append(dateTime.ToString("M", culture));
builder.Append(dateTime.Month);
}
}
else
{
builder.Append(dateTime.ToString("M", culture));
builder.Append(dateTime.Month);
}
}
}
Expand Down

0 comments on commit 7b4a967

Please sign in to comment.