[Python-checkins] [3.10] Fix minor typo in Doc/c-api/type.rst (GH-28432) (GH-28440)

miss-islington webhook-mailer at python.org
Fri Sep 17 22:11:58 EDT 2021


https://github.com/python/cpython/commit/5683902e062d44668c0f4df4ed17df6bd21bc60d
commit: 5683902e062d44668c0f4df4ed17df6bd21bc60d
branch: 3.10
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: miss-islington <31488909+miss-islington at users.noreply.github.com>
date: 2021-09-17T19:11:51-07:00
summary:

[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 <konst.hardy at gmail.com>

Automerge-Triggered-By: GH:Fidget-Spinner

files:
M Doc/c-api/type.rst

diff --git a/Doc/c-api/type.rst b/Doc/c-api/type.rst
index 4d0c65cc31f76..c472e8df9cf43 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.
 



More information about the Python-checkins mailing list