From: Connor Gibson Date: Sat, 14 Mar 2026 09:19:00 +0000 (-0700) Subject: Docs: fix missing period in `Doc/library/stdtypes.rst` (#145935) X-Git-Tag: v3.15.0a8~318 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=51e8acf8de1aa1f1751dd5bb84d44b8d42143b9c;p=thirdparty%2FPython%2Fcpython.git Docs: fix missing period in `Doc/library/stdtypes.rst` (#145935) --- diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index 7ae399eb95ba..6e2c72daf7ac 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -1286,7 +1286,7 @@ Mutable sequence types also support the following methods: :no-typesetting: .. method:: sequence.append(value, /) - Append *value* to the end of the sequence + Append *value* to the end of the sequence. This is equivalent to writing ``seq[len(seq):len(seq)] = [value]``. .. method:: bytearray.clear()