From d05a66339b5e07d72d96e4c30a34cc3821bb61a2 Mon Sep 17 00:00:00 2001 From: Piotr Fusik Date: Thu, 20 Jan 2022 09:17:15 +0100 Subject: [PATCH] no-issue: Fix documentation typos. (GH-30576) --- Doc/c-api/init_config.rst | 2 +- Doc/howto/descriptor.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/c-api/init_config.rst b/Doc/c-api/init_config.rst index 7c8fb7b1dee5dc..922412c1423020 100644 --- a/Doc/c-api/init_config.rst +++ b/Doc/c-api/init_config.rst @@ -656,7 +656,7 @@ PyConfig .. c:member:: int dump_refs - Dump Python refererences? + Dump Python references? If non-zero, dump all objects which are still alive at exit. diff --git a/Doc/howto/descriptor.rst b/Doc/howto/descriptor.rst index 6ce062d0fa853e..f8b1e00d96fadc 100644 --- a/Doc/howto/descriptor.rst +++ b/Doc/howto/descriptor.rst @@ -1544,7 +1544,7 @@ variables: 'Simulate how the type metaclass adds member objects for slots' def __new__(mcls, clsname, bases, mapping): - 'Emuluate type_new() in Objects/typeobject.c' + 'Emulate type_new() in Objects/typeobject.c' # type_new() calls PyTypeReady() which calls add_methods() slot_names = mapping.get('slot_names', []) for offset, name in enumerate(slot_names):