[Python-checkins] cpython (3.2): Few typos in the documentation.

florent.xicluna python-checkins at python.org
Fri Nov 11 19:59:04 CET 2011


http://hg.python.org/cpython/rev/fbb76e68467c
changeset:   73510:fbb76e68467c
branch:      3.2
parent:      73508:27fe09ff14b7
user:        Florent Xicluna <florent.xicluna at gmail.com>
date:        Fri Nov 11 19:55:21 2011 +0100
summary:
  Few typos in the documentation.

files:
  Doc/library/builtins.rst |  2 +-
  Doc/library/imaplib.rst  |  2 +-
  2 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/Doc/library/builtins.rst b/Doc/library/builtins.rst
--- a/Doc/library/builtins.rst
+++ b/Doc/library/builtins.rst
@@ -36,6 +36,6 @@
 
 As an implementation detail, most modules have the name ``__builtins__`` made
 available as part of their globals.  The value of ``__builtins__`` is normally
-either this module or the value of this modules's :attr:`__dict__` attribute.
+either this module or the value of this module's :attr:`__dict__` attribute.
 Since this is an implementation detail, it may not be used by alternate
 implementations of Python.
diff --git a/Doc/library/imaplib.rst b/Doc/library/imaplib.rst
--- a/Doc/library/imaplib.rst
+++ b/Doc/library/imaplib.rst
@@ -109,7 +109,7 @@
    Convert *date_time* to an IMAP4 ``INTERNALDATE`` representation.  The
    return value is a string in the form: ``"DD-Mmm-YYYY HH:MM:SS
    +HHMM"`` (including double-quotes).  The *date_time* argument can be a
-   number (int or float) represening seconds since epoch (as returned
+   number (int or float) representing seconds since epoch (as returned
    by :func:`time.time`), a 9-tuple representing local time (as returned by
    :func:`time.localtime`), or a double-quoted string.  In the last case, it
    is assumed to already be in the correct format.

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


More information about the Python-checkins mailing list