Skip to content

Commit

Permalink
Fixing possible range for week_of_month type (#704)
Browse files Browse the repository at this point in the history
  • Loading branch information
tayjohno committed Mar 8, 2022
1 parent 3b81c5b commit eb666f6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).

### Fixed

- Corrected type definition for Types.week_of_month to include possiblity of 6th week (see #703)

---

## 3.7.6
Expand Down
2 changes: 1 addition & 1 deletion lib/timex/types.ex
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ defmodule Timex.Types do
@type day :: Calendar.day()
@type num_of_days :: 28..31
@type daynum :: 1..366
@type week_of_month :: 1..5
@type week_of_month :: 1..6
@type weekday :: 1..7
@type weeknum :: 1..53
# Time types
Expand Down

0 comments on commit eb666f6

Please sign in to comment.