Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
These look good to me.

Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
  • Loading branch information
ericvsmith and hugovk committed Sep 24, 2024
1 parent e5c1009 commit e29f5fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Doc/library/calendar.rst
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ The :mod:`calendar` module exports the following data attributes:
.. data:: day_name

A sequence that represents the days of the week in the current locale,
where ``Monday`` is ``0`` and ``Sunday`` is ``6``.
where Monday is day number 0.

>>> import calendar
>>> list(calendar.day_name)
Expand All @@ -404,7 +404,7 @@ The :mod:`calendar` module exports the following data attributes:
.. data:: day_abbr

A sequence that represents the abbreviated days of the week in the current locale,
where ``Mon`` is ``0`` and ``Sun`` is ``6``.
where Mon is day number 0.

>>> import calendar
>>> list(calendar.day_abbr)
Expand Down

0 comments on commit e29f5fe

Please sign in to comment.