Skip to content

Commit

Permalink
More doc fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
kipcole9 committed Jan 31, 2025
1 parent 5a5a9c3 commit 7f3cf5f
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions lib/cldr/calendar.ex
Original file line number Diff line number Diff line change
Expand Up @@ -2003,7 +2003,7 @@ defmodule Cldr.Calendar do

@doc """
Returns the first day of a week for a given
locale.
locale where `1` means `Monday` and `7` means `Sunday`.
Note that the first day of the first week is commonly
not aligned with the first day of the year.
Expand Down Expand Up @@ -2045,7 +2045,7 @@ defmodule Cldr.Calendar do
@doc """
Returns a list of the days of the week that
are considered a weekend for a given
territory (country).
territory (region, country).
### Arguments
Expand All @@ -2054,7 +2054,8 @@ defmodule Cldr.Calendar do
### Returns
* A list of integers representing the days of
the week that are weekend days.
the week that are weekend days. Here `1` means
`Monday` and `7` means `Sunday`.
### Examples
Expand Down Expand Up @@ -2085,11 +2086,12 @@ defmodule Cldr.Calendar do
### Returns
* A list of integers representing the days of
the week that are week days.
the week that are week days. Here `1` means
`Monday` and `7` means `Sunday`.
### Notes
The list of days may not my monotonic. See
The list of days may not be monotonic. See
the example for Saudi Arabia below.
### Examples
Expand Down Expand Up @@ -2119,8 +2121,8 @@ defmodule Cldr.Calendar do
### Returns
* A list of integers representing the days of
the week that are week days.
* The first day of the week for this territory.
Here `1` means `Monday` and `7` means `Sunday`.
"""
def first_day_for_territory(territory)
Expand Down

0 comments on commit 7f3cf5f

Please sign in to comment.