Skip to content

Commit e29e709

Browse files
Update Doc/extending/extending.rst
Co-authored-by: AN Long <aisk@users.noreply.github.com>
1 parent c4f5f6b commit e29e709

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Doc/extending/extending.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1086,7 +1086,7 @@ user-defined class, and let's further suppose that the class defined a
10861086
:meth:`!__del__` method. If this class instance has a reference count of 1,
10871087
disposing of it will call its :meth:`!__del__` method. Internally,
10881088
:c:func:`PyList_SetItem` calls :c:func:`Py_DECREF` on the replaced item,
1089-
which invokes replaced item's corrresponding
1089+
which invokes replaced item's corresponding
10901090
:c:member:`~PyTypeObject.tp_dealloc` function (that is
10911091
:c:func:`subtype_dealloc` in case of Python class instance). During
10921092
deallocation, :c:func:`subtype_dealloc` calls

0 commit comments

Comments
 (0)