diff options
author | R David Murray <rdmurray@bitdance.com> | 2015-05-17 14:17:35 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2015-05-17 14:17:35 (GMT) |
commit | c1ecef78a3d5f5db47df66cc24929a66466fdcd4 (patch) | |
tree | 4d7bc7a7a39d1d3ff400b5d1033b2fd8164fc46e /Doc | |
parent | 2eb1a8b6d3c4b2c7b067add7ef6239d799706fbb (diff) | |
parent | 0e8168c9e51ffc7a436ca4e5b15aaec261094837 (diff) | |
download | cpython-c1ecef78a3d5f5db47df66cc24929a66466fdcd4.zip cpython-c1ecef78a3d5f5db47df66cc24929a66466fdcd4.tar.gz cpython-c1ecef78a3d5f5db47df66cc24929a66466fdcd4.tar.bz2 |
Merge: #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 2c66fca..44da97e 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -2509,7 +2509,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. |