From 344dce312a0cf86d5a5772d54843cc179acaf6e3 Mon Sep 17 00:00:00 2001 From: Nima Dini Date: Fri, 10 Jul 2020 18:54:53 -0700 Subject: [PATCH] bpo-41228: Fix /a/are/ in monthcalendar() descripton (GH-21372) --- Doc/library/calendar.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/calendar.rst b/Doc/library/calendar.rst index 56b75ef0f85..c3c04db853e 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`.