diff options
author | Nima Dini <nima.dini@gmail.com> | 2020-07-11 01:54:53 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-11 01:54:53 (GMT) |
commit | 344dce312a0cf86d5a5772d54843cc179acaf6e3 (patch) | |
tree | 2d21012a566f469a3dcfbfd2927cba001ca5a856 /Doc/library/calendar.rst | |
parent | 4c8f09d7cef8c7aa07d5b5232b5b64f63819a743 (diff) | |
download | cpython-344dce312a0cf86d5a5772d54843cc179acaf6e3.zip cpython-344dce312a0cf86d5a5772d54843cc179acaf6e3.tar.gz cpython-344dce312a0cf86d5a5772d54843cc179acaf6e3.tar.bz2 |
bpo-41228: Fix /a/are/ in monthcalendar() descripton (GH-21372)
Diffstat (limited to 'Doc/library/calendar.rst')
-rw-r--r-- | Doc/library/calendar.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/calendar.rst b/Doc/library/calendar.rst index 56b75ef..c3c04db 100644 --- a/Doc/library/calendar.rst +++ b/Doc/library/calendar.rst @@ -349,7 +349,7 @@ For simple text calendars this module provides the following functions. .. function:: monthcalendar(year, month) Returns a matrix representing a month's calendar. Each row represents a week; - days outside of the month a represented by zeros. Each week begins with Monday + days outside of the month are represented by zeros. Each week begins with Monday unless set by :func:`setfirstweekday`. |