]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.9] Fix minor typo in Doc/c-api/type.rst (GH-28432) (GH-28441)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Sat, 18 Sep 2021 02:12:25 +0000 (19:12 -0700)
committerGitHub <noreply@github.com>
Sat, 18 Sep 2021 02:12:25 +0000 (19:12 -0700)
retreived-> retrieved
(cherry picked from commit af08f1ba40505bf1380c08b57ba4e0b8969a8358)

Co-authored-by: Konstantin Popov <konst.hardy@gmail.com>
Automerge-Triggered-By: GH:Fidget-Spinner
Doc/c-api/type.rst

index 69894cae2069e625fe2f97b5eab2d1f4efdbe85a..cc2d8fdaa513c16bce653ae3fe2562387c2d8666 100644 (file)
@@ -173,7 +173,7 @@ The following functions and structs are used to create
    The *module* argument can be used to record the module in which the new
    class is defined. It must be a module object or ``NULL``.
    If not ``NULL``, the module is associated with the new type and can later be
-   retreived with :c:func:`PyType_GetModule`.
+   retrieved with :c:func:`PyType_GetModule`.
    The associated module is not inherited by subclasses; it must be specified
    for each class individually.