[Python-checkins] bpo-41228: Fix /a/are/ in monthcalendar() descripton (GH-21372)

Nima Dini webhook-mailer at python.org
Fri Jul 10 21:55:01 EDT 2020


https://github.com/python/cpython/commit/344dce312a0cf86d5a5772d54843cc179acaf6e3
commit: 344dce312a0cf86d5a5772d54843cc179acaf6e3
branch: master
author: Nima Dini <nima.dini at gmail.com>
committer: GitHub <noreply at github.com>
date: 2020-07-10T21:54:53-04:00
summary:

bpo-41228: Fix /a/are/ in monthcalendar() descripton (GH-21372)

files:
M Doc/library/calendar.rst

diff --git a/Doc/library/calendar.rst b/Doc/library/calendar.rst
index 56b75ef0f850a..c3c04db853ed2 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`.
 
 



More information about the Python-checkins mailing list