From 971ba4c8170040d284ab8cf5331adcfb226156eb Mon Sep 17 00:00:00 2001 From: Ezio Melotti Date: Sat, 27 Oct 2012 23:25:18 +0300 Subject: #16337: fix typo. --- Doc/library/stdtypes.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index 433befa..4d479a7 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 -- cgit v0.12