]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.13] Docs: fix missing period in `Doc/library/stdtypes.rst` (GH-145935) (#145937)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Sat, 14 Mar 2026 09:25:21 +0000 (10:25 +0100)
committerGitHub <noreply@github.com>
Sat, 14 Mar 2026 09:25:21 +0000 (09:25 +0000)
Docs: fix missing period in `Doc/library/stdtypes.rst` (GH-145935)
(cherry picked from commit 51e8acf8de1aa1f1751dd5bb84d44b8d42143b9c)

Co-authored-by: Connor Gibson <connor@nextdoortech.net>
Doc/library/stdtypes.rst

index 81a6a7511abea5d454cca29e6c963d249e79e34d..d3eeb0ce5a8c1180b72f5baa4075aa38672e94b4 100644 (file)
@@ -1234,7 +1234,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()