]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix minor typo in Doc/c-api/type.rst (GH-28432)
authorKonstantin Popov <konst.hardy@gmail.com>
Sat, 18 Sep 2021 01:45:33 +0000 (04:45 +0300)
committerGitHub <noreply@github.com>
Sat, 18 Sep 2021 01:45:33 +0000 (09:45 +0800)
retreived-> retrieved

Doc/c-api/type.rst

index 413294dde779f38d06abc59173c1ebd11a438fc6..f96886985e932626f712fec1ebf42cac03d10dad 100644 (file)
@@ -187,7 +187,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.