summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2015-05-17 14:16:37 (GMT)
committerR David Murray <rdmurray@bitdance.com>2015-05-17 14:16:37 (GMT)
commit0e8168c9e51ffc7a436ca4e5b15aaec261094837 (patch)
tree9d9ae4f49ca71d8b52f91689c267c520d3651826 /Doc
parent296c66e21cf21c2b4eada43432d734e9bccc07b4 (diff)
downloadcpython-0e8168c9e51ffc7a436ca4e5b15aaec261094837.zip
cpython-0e8168c9e51ffc7a436ca4e5b15aaec261094837.tar.gz
cpython-0e8168c9e51ffc7a436ca4e5b15aaec261094837.tar.bz2
#24216: fix typo
Diffstat (limited to 'Doc')
-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 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.