]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Docs: fix missing period in `Doc/library/stdtypes.rst` (#145935)
authorConnor Gibson <connor@nextdoortech.net>
Sat, 14 Mar 2026 09:19:00 +0000 (02:19 -0700)
committerGitHub <noreply@github.com>
Sat, 14 Mar 2026 09:19:00 +0000 (10:19 +0100)
Doc/library/stdtypes.rst

index 7ae399eb95ba6e102ac138fba4483736f8edec0e..6e2c72daf7ac4438f61c7be75b000e76582232c2 100644 (file)
@@ -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()