[Python-checkins] cpython (3.4): #24216: fix typo

r.david.murray python-checkins at python.org
Sun May 17 16:17:45 CEST 2015


https://hg.python.org/cpython/rev/ba271f116f94
changeset:   96114:ba271f116f94
branch:      3.4
parent:      96110:c862166060ed
user:        R David Murray <rdmurray at bitdance.com>
date:        Sun May 17 10:16:37 2015 -0400
summary:
  #24216: fix typo

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


diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst
--- a/Doc/library/stdtypes.rst
+++ b/Doc/library/stdtypes.rst
@@ -2483,7 +2483,7 @@
    Return a bytes or bytearray object which is the concatenation of the
    binary data sequences in the :term:`iterable` *iterable*.  A
    :exc:`TypeError` will be raised if there are any values in *iterable*
-   that are note :term:`bytes-like objects <bytes-like object>`, including
+   that are not :term:`bytes-like objects <bytes-like object>`, including
    :class:`str` objects.  The separator between elements is the contents
    of the bytes or bytearray object providing this method.
 

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


More information about the Python-checkins mailing list