summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2015-05-17 14:17:35 (GMT)
committerR David Murray <rdmurray@bitdance.com>2015-05-17 14:17:35 (GMT)
commitc1ecef78a3d5f5db47df66cc24929a66466fdcd4 (patch)
tree4d7bc7a7a39d1d3ff400b5d1033b2fd8164fc46e /Doc/library
parent2eb1a8b6d3c4b2c7b067add7ef6239d799706fbb (diff)
parent0e8168c9e51ffc7a436ca4e5b15aaec261094837 (diff)
downloadcpython-c1ecef78a3d5f5db47df66cc24929a66466fdcd4.zip
cpython-c1ecef78a3d5f5db47df66cc24929a66466fdcd4.tar.gz
cpython-c1ecef78a3d5f5db47df66cc24929a66466fdcd4.tar.bz2
Merge: #24216: fix typo
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/stdtypes.rst2
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.