From: R David Murray Date: Sun, 17 May 2015 14:16:37 +0000 (-0400) Subject: #24216: fix typo X-Git-Tag: v3.5.0b1~96^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0e8168c9e51ffc7a436ca4e5b15aaec261094837;p=thirdparty%2FPython%2Fcpython.git #24216: fix typo --- diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index a4324b550b3b..fc6d0206992a 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -2483,7 +2483,7 @@ arbitrary binary data. 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 `, including + that are not :term:`bytes-like objects `, including :class:`str` objects. The separator between elements is the contents of the bytes or bytearray object providing this method.