diff options
author | Konstantin Popov <konst.hardy@gmail.com> | 2021-09-18 04:45:33 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-18 09:45:33 +0800 |
commit | af08f1ba40505bf1380c08b57ba4e0b8969a8358 (patch) | |
tree | 175e1334f11ec66c637fdbbf41e2cee59f428bf7 | |
parent | 209b7035f714dcc41df054b0b023e0b955d7e1a2 (diff) | |
download | cpython-git-af08f1ba40505bf1380c08b57ba4e0b8969a8358.tar.gz |
Fix minor typo in Doc/c-api/type.rst (GH-28432)
retreived-> retrieved
-rw-r--r-- | Doc/c-api/type.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/c-api/type.rst b/Doc/c-api/type.rst index 413294dde7..f96886985e 100644 --- a/Doc/c-api/type.rst +++ b/Doc/c-api/type.rst @@ -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. |