merge with 3.2
diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst
index a2ee932..aab8d2e 100644
--- a/Doc/library/stdtypes.rst
+++ b/Doc/library/stdtypes.rst
@@ -2421,7 +2421,7 @@
       bytearray(b'zbcefg')
       >>> v[1:4] = b'123'
       >>> data
-      bytearray(b'a123fg')
+      bytearray(b'z123fg')
       >>> v[2] = b'spam'
       Traceback (most recent call last):
       File "<stdin>", line 1, in <module>