From 0e8168c9e51ffc7a436ca4e5b15aaec261094837 Mon Sep 17 00:00:00 2001 From: R David Murray Date: Sun, 17 May 2015 10:16:37 -0400 Subject: [PATCH] #24216: fix typo --- Doc/library/stdtypes.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index a4324b550b3..fc6d0206992 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.