diff options
| author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2020-07-10 19:09:07 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-07-10 19:09:07 -0700 |
| commit | c77f71f9819022fa3adeb2f710e564a392ff24c6 (patch) | |
| tree | 6e3be3a41ce73bec77d12622b1905f6564199c41 | |
| parent | a1d208435c4a1da5c8df829c35751855a87ef6be (diff) | |
| download | cpython-git-c77f71f9819022fa3adeb2f710e564a392ff24c6.tar.gz | |
bpo-41228: Fix /a/are/ in monthcalendar() descripton (GH-21372)
(cherry picked from commit 344dce312a0cf86d5a5772d54843cc179acaf6e3)
Co-authored-by: Nima Dini <nima.dini@gmail.com>
| -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 56b75ef0f8..c3c04db853 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`. |
