diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2021-09-18 02:12:25 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-18 02:12:25 (GMT) |
commit | 6e151ff6fc39cc61e57c72a8c00633948c53eec7 (patch) | |
tree | 8235ff23840566941b6b7e12f776cb598ce9d6bd /Doc | |
parent | eb9833d2658971cdfe9d4df11cc8f445abdf80ad (diff) | |
download | cpython-6e151ff6fc39cc61e57c72a8c00633948c53eec7.zip cpython-6e151ff6fc39cc61e57c72a8c00633948c53eec7.tar.gz cpython-6e151ff6fc39cc61e57c72a8c00633948c53eec7.tar.bz2 |
[3.9] Fix minor typo in Doc/c-api/type.rst (GH-28432) (GH-28441)
retreived-> retrieved
(cherry picked from commit af08f1ba40505bf1380c08b57ba4e0b8969a8358)
Co-authored-by: Konstantin Popov <konst.hardy@gmail.com>
Automerge-Triggered-By: GH:Fidget-Spinner
Diffstat (limited to 'Doc')
-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 69894ca..cc2d8fd 100644 --- a/Doc/c-api/type.rst +++ b/Doc/c-api/type.rst @@ -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. |