diff options
author | R David Murray <rdmurray@bitdance.com> | 2015-05-17 14:16:37 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2015-05-17 14:16:37 (GMT) |
commit | 0e8168c9e51ffc7a436ca4e5b15aaec261094837 (patch) | |
tree | 9d9ae4f49ca71d8b52f91689c267c520d3651826 /Doc | |
parent | 296c66e21cf21c2b4eada43432d734e9bccc07b4 (diff) | |
download | cpython-0e8168c9e51ffc7a436ca4e5b15aaec261094837.zip cpython-0e8168c9e51ffc7a436ca4e5b15aaec261094837.tar.gz cpython-0e8168c9e51ffc7a436ca4e5b15aaec261094837.tar.bz2 |
#24216: fix typo
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/stdtypes.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index a4324b5..fc6d020 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 <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. |