[Python-checkins] cpython: Fixed typos in TZ format description

alexander.belopolsky python-checkins at python.org
Fri Aug 28 22:56:57 CEST 2015


https://hg.python.org/cpython/rev/d0ff55a6b02f
changeset:   97537:d0ff55a6b02f
user:        Alexander Belopolsky <alexander.belopolsky at gmail.com>
date:        Fri Aug 28 16:56:45 2015 -0400
summary:
  Fixed typos in TZ format description

files:
  Doc/library/time.rst |  4 ++--
  1 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/Doc/library/time.rst b/Doc/library/time.rst
--- a/Doc/library/time.rst
+++ b/Doc/library/time.rst
@@ -634,11 +634,11 @@
          it is possible to refer to February 29.
 
       :samp:`M{m}.{n}.{d}`
-         The *d*'th day (0 <= *d* <= 6) or week *n* of month *m* of the year (1
+         The *d*'th day (0 <= *d* <= 6) of week *n* of month *m* of the year (1
          <= *n* <= 5, 1 <= *m* <= 12, where week 5 means "the last *d* day in
          month *m*" which may occur in either the fourth or the fifth
          week). Week 1 is the first week in which the *d*'th day occurs. Day
-         zero is Sunday.
+         zero is a Sunday.
 
       ``time`` has the same format as ``offset`` except that no leading sign
       ('-' or '+') is allowed. The default, if time is not given, is 02:00:00.

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list