From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Sat, 18 Sep 2021 02:11:51 +0000 (-0700) Subject: [3.10] Fix minor typo in Doc/c-api/type.rst (GH-28432) (GH-28440) X-Git-Tag: v3.10.0~24 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=43f9ca2a97ef2ab0df0d77b436572936fef458ee;p=thirdparty%2FPython%2Fcpython.git [3.10] Fix minor typo in Doc/c-api/type.rst (GH-28432) (GH-28440) retreived-> retrieved (cherry picked from commit af08f1ba40505bf1380c08b57ba4e0b8969a8358) Co-authored-by: Konstantin Popov Automerge-Triggered-By: GH:Fidget-Spinner --- diff --git a/Doc/c-api/type.rst b/Doc/c-api/type.rst index 4d0c65cc31f7..c472e8df9cf4 100644 --- a/Doc/c-api/type.rst +++ b/Doc/c-api/type.rst @@ -174,7 +174,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.