summaryrefslogtreecommitdiffstats
path: root/Doc/howto/descriptor.rst
diff options
context:
space:
mode:
authorPiotr Fusik <piotr@fusik.info>2022-01-20 08:17:15 (GMT)
committerGitHub <noreply@github.com>2022-01-20 08:17:15 (GMT)
commitd05a66339b5e07d72d96e4c30a34cc3821bb61a2 (patch)
tree8e89186ee654dce309a67e87e5628927d81903f5 /Doc/howto/descriptor.rst
parent194ecc6d44adc1fb39a56ca696418368b69432ce (diff)
downloadcpython-d05a66339b5e07d72d96e4c30a34cc3821bb61a2.zip
cpython-d05a66339b5e07d72d96e4c30a34cc3821bb61a2.tar.gz
cpython-d05a66339b5e07d72d96e4c30a34cc3821bb61a2.tar.bz2
no-issue: Fix documentation typos. (GH-30576)
Diffstat (limited to 'Doc/howto/descriptor.rst')
-rw-r--r--Doc/howto/descriptor.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/howto/descriptor.rst b/Doc/howto/descriptor.rst
index 6ce062d..f8b1e00 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):