From: Ezio Melotti Date: Sat, 27 Oct 2012 20:25:18 +0000 (+0300) Subject: #16337: fix typo. X-Git-Tag: v3.3.1rc1~733 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=971ba4c8170040d284ab8cf5331adcfb226156eb;p=python #16337: fix typo. --- diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index 433befa7ea..4d479a7be9 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -2164,7 +2164,7 @@ they are always created by calling the constructor: * Creating an empty instance: ``bytearray()`` * Creating a zero-filled instance with a given length: ``bytearray(10)`` * From an iterable of integers: ``bytearray(range(20))`` -* Copying existing binary data via the buffer protocol: ``bytearray(b'Hi!)`` +* Copying existing binary data via the buffer protocol: ``bytearray(b'Hi!')`` As bytearray objects are mutable, they support the :ref:`mutable ` sequence operations in addition to the